Skip to content

Commit

Permalink
merge with main changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomip01 committed Jan 30, 2025
1 parent f93caaf commit a9f2552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/blockchain/payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ pub fn build_payload(
) -> Result<(BlobsBundle, U256), ChainError> {
debug!("Building payload");
let mut evm_state = evm_state(store.clone(), payload.header.parent_hash);
let mut context = PayloadBuildContext::new(payload, &mut evm_state);
let mut context = PayloadBuildContext::new(payload, &mut evm_state)?;
let mut block_cache = apply_withdrawals(&mut context)?;
fill_transactions(&mut context, &mut block_cache)?;
finalize_payload(&mut context, &mut block_cache)?;
Expand Down

0 comments on commit a9f2552

Please sign in to comment.