Trait parity_rpc::dispatch::PostSign
source · [−]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
Required methods
fn execute(self, signer: WithToken<SignedTransaction>) -> Self::Out
fn execute(self, signer: WithToken<SignedTransaction>) -> Self::Out
perform an action with the signed transaction