pub trait IntoRecoveredTransaction {
    // Required method
    fn to_recovered_transaction(&self) -> TransactionSignedEcRecovered;
}
Expand description

Ensures the transaction can be sent over the network

Required Methods§

source

fn to_recovered_transaction(&self) -> TransactionSignedEcRecovered

Converts to this type into a TransactionSignedEcRecovered.

Note: this takes &self since indented usage is via Arc<Self>.

Implementations on Foreign Types§

source§

impl<T> IntoRecoveredTransaction for ValidPoolTransaction<T>

Implementors§