pub trait ApplyTransactionAction {
// Required method
fn apply(self, tx: Transaction) -> Result<Transaction>;
}Expand description
A helper trait for applying a TransactionAction to a Transaction.
This is implemented for all TransactionAction types
to allow easy chaining of actions into a transaction context.