mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
feat: rename reth_primitives::RecoveredTx functions to match alloy::Recovered (#13663)
This commit is contained in:
@@ -1592,8 +1592,7 @@ mod tests {
|
||||
body: Vec<RecoveredTx<TransactionSigned>>,
|
||||
num_of_signer_txs: u64|
|
||||
-> SealedBlockWithSenders {
|
||||
let signed_body =
|
||||
body.clone().into_iter().map(|tx| tx.into_signed()).collect::<Vec<_>>();
|
||||
let signed_body = body.clone().into_iter().map(|tx| tx.into_tx()).collect::<Vec<_>>();
|
||||
let transactions_root = calculate_transaction_root(&signed_body);
|
||||
let receipts = body
|
||||
.iter()
|
||||
|
||||
Reference in New Issue
Block a user