chore: rm usage of PooledTransactionsElementEcRecovered alias (#13690)

This commit is contained in:
Matthias Seitz
2025-01-06 23:26:46 +01:00
committed by GitHub
parent 15b50dac23
commit 28761dbffe
4 changed files with 7 additions and 11 deletions

View File

@ -875,8 +875,7 @@ impl TransactionSigned {
}
}
/// Converts from an EIP-4844 [`RecoveredTx`] to a
/// [`PooledTransactionsElementEcRecovered`] with the given sidecar.
/// Converts from an EIP-4844 transaction to a [`PooledTransaction`] with the given sidecar.
///
/// Returns an `Err` containing the original `TransactionSigned` if the transaction is not
/// EIP-4844.

View File

@ -4,7 +4,6 @@
use crate::RecoveredTx;
use alloy_consensus::transaction::PooledTransaction;
// TODO: remove this foreign type
/// A signed pooled transaction with recovered signer.
pub type PooledTransactionsElementEcRecovered<T = PooledTransaction> = RecoveredTx<T>;