From 7e5414eedf2a31a5bdcbcce8618d84d1b947d49c Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 8 Aug 2024 14:20:54 +0200 Subject: [PATCH] fix: add requests root when converting alloy header (#10197) --- crates/primitives-traits/src/alloy_compat.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/primitives-traits/src/alloy_compat.rs b/crates/primitives-traits/src/alloy_compat.rs index 4bf80e1f7c..41f24f2c1f 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, }) } }