Trait reth::core::primitives::IntoRecoveredTransaction

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

The inverse of TryFromRecoveredTransaction that ensure 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>.

Implementors§