diff --git a/crates/blockchain-tree/src/blockchain_tree.rs b/crates/blockchain-tree/src/blockchain_tree.rs
index dc5914de21..4d587cdcb2 100644
--- a/crates/blockchain-tree/src/blockchain_tree.rs
+++ b/crates/blockchain-tree/src/blockchain_tree.rs
@@ -1248,7 +1248,7 @@ mod tests {
stage::StageCheckpoint,
Account, Address, ChainSpecBuilder, Genesis, GenesisAccount, Header, Signature,
Transaction, TransactionKind, TransactionSigned, TransactionSignedEcRecovered, TxEip1559,
- B256, MAINNET,
+ Withdrawals, B256, MAINNET,
};
use reth_provider::{
test_utils::{
@@ -1492,7 +1492,7 @@ mod tests {
.seal_slow(),
body: body.clone().into_iter().map(|tx| tx.into_signed()).collect(),
ommers: Vec::new(),
- withdrawals: Some(Vec::new()),
+ withdrawals: Some(Withdrawals::default()),
},
body.iter().map(|tx| tx.signer()).collect(),
)
diff --git a/crates/consensus/common/src/validation.rs b/crates/consensus/common/src/validation.rs
index 13a3571315..0fd6601761 100644
--- a/crates/consensus/common/src/validation.rs
+++ b/crates/consensus/common/src/validation.rs
@@ -478,7 +478,7 @@ mod tests {
use reth_primitives::{
constants::eip4844::DATA_GAS_PER_BLOB, hex_literal::hex, proofs, Account, Address,
BlockBody, BlockHash, BlockHashOrNumber, Bytes, ChainSpecBuilder, Header, Signature,
- TransactionKind, TransactionSigned, Withdrawal, MAINNET, U256,
+ TransactionKind, TransactionSigned, Withdrawal, Withdrawals, MAINNET, U256,
};
use std::ops::RangeBounds;
@@ -492,7 +492,7 @@ mod tests {
&self,
_id: BlockHashOrNumber,
_timestamp: u64,
- ) -> ProviderResult