Skip to content

Commit

Permalink
workaround L2 block body not being available
Browse files Browse the repository at this point in the history
  • Loading branch information
Brechtpd committed Sep 27, 2024
1 parent 4cd529e commit c9d1c8f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ impl<DB: Database + Clone + 'static> BlockBuildingHelper for BlockBuildingHelper
let block = RethBlock {
header,
//body: self.executed_tx.into_iter().map(|t| t.tx.into()).collect(),
body: Vec::new(),
// TODO Brecht: fix
body: blocks[&167010].sealed_block.body.clone(),
ommers: Vec::new(),
withdrawals: None,
requests: None,
Expand Down

0 comments on commit c9d1c8f

Please sign in to comment.