mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
feat: pass parent beacon block root to payload builder (#4425)
This commit is contained in:
@@ -828,7 +828,7 @@ where
|
||||
difficulty: U256::ZERO,
|
||||
gas_used: cumulative_gas_used,
|
||||
extra_data: extra_data.into(),
|
||||
parent_beacon_block_root: None,
|
||||
parent_beacon_block_root: attributes.parent_beacon_block_root,
|
||||
blob_gas_used,
|
||||
excess_blob_gas,
|
||||
};
|
||||
@@ -906,7 +906,7 @@ where
|
||||
blob_gas_used: None,
|
||||
excess_blob_gas: None,
|
||||
extra_data: extra_data.into(),
|
||||
parent_beacon_block_root: None,
|
||||
parent_beacon_block_root: attributes.parent_beacon_block_root,
|
||||
};
|
||||
|
||||
let block = Block { header, body: vec![], ommers: vec![], withdrawals };
|
||||
|
||||
Reference in New Issue
Block a user