diff --git a/crates/primitives/src/transaction/pooled.rs b/crates/primitives/src/transaction/pooled.rs index 09111c61a1..e526eb3894 100644 --- a/crates/primitives/src/transaction/pooled.rs +++ b/crates/primitives/src/transaction/pooled.rs @@ -572,6 +572,12 @@ impl InMemorySize for PooledTransactionsElement { } } +impl From for PooledTransactionsElement { + fn from(recovered: PooledTransactionsElementEcRecovered) -> Self { + recovered.into_transaction() + } +} + impl TryFrom for PooledTransactionsElement { type Error = TransactionConversionError;