fix: add requests root when converting alloy header (#10197)

This commit is contained in:
Oliver
2024-08-08 14:20:54 +02:00
committed by GitHub
parent 0f6cd0af83
commit 7e5414eedf

View File

@ -41,8 +41,7 @@ impl TryFrom<RpcHeader> 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,
})
}
}