pub trait TransactionSigner {
    // Required method
    fn sign_txn(&self, raw_txn: RawTransaction) -> Result<SignedTransaction>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl TransactionSigner for KeyPair<ConsensusPrivateKey, ConsensusPublicKey>

Implementors§