pub trait PostSign: Send {
    type Item: Send;
    type Out: IntoFuture<Item = Self::Item, Error = Error> + Send;
    fn execute(self, signer: WithToken<SignedTransaction>) -> Self::Out;
}
Expand description

action to execute after signing e.g importing a transaction into the chain

Associated Types

item that this PostSign returns

incase you need to perform async PostSign actions

Required methods

perform an action with the signed transaction

Implementations on Foreign Types

Implementors