From ef94a101c3aa65684a0a6c79f08ab6262de40d92 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 27 Sep 2024 19:11:51 +0200 Subject: [PATCH] chore: rm outdated comments (#1392) --- crates/consensus/src/header.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/crates/consensus/src/header.rs b/crates/consensus/src/header.rs index 2c06e169a43..0d9a565f1af 100644 --- a/crates/consensus/src/header.rs +++ b/crates/consensus/src/header.rs @@ -201,17 +201,6 @@ impl Header { self.transactions_root == EMPTY_ROOT_HASH } - // TODO: re-enable - - // /// Converts all roots in the header to a [BlockBodyRoots] struct. - // pub fn body_roots(&self) -> BlockBodyRoots { - // BlockBodyRoots { - // tx_root: self.transactions_root, - // ommers_hash: self.ommers_hash, - // withdrawals_root: self.withdrawals_root, - // } - // } - /// Returns the blob fee for _this_ block according to the EIP-4844 spec. /// /// Returns `None` if `excess_blob_gas` is None