diff --git a/crates/primitives-traits/src/alloy_compat.rs b/crates/primitives-traits/src/alloy_compat.rs index 4bf80e1f7..41f24f2c1 100644 --- a/crates/primitives-traits/src/alloy_compat.rs +++ b/crates/primitives-traits/src/alloy_compat.rs @@ -41,8 +41,7 @@ impl TryFrom for Header { timestamp: header.timestamp, transactions_root: header.transactions_root, withdrawals_root: header.withdrawals_root, - // TODO: requests_root: header.requests_root, - requests_root: None, + requests_root: header.requests_root, }) } }