Skip to content

Commit

Permalink
fix(builder): prague blob params activation
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrasiuk committed Jan 15, 2025
1 parent f2bf024 commit 7bca0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ethereum/payload/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ where
.map_err(PayloadBuilderError::other)?;

excess_blob_gas = if chain_spec.is_cancun_active_at_timestamp(parent_header.timestamp) {
let blob_params = if chain_spec.is_prague_active_at_timestamp(parent_header.timestamp) {
let blob_params = if chain_spec.is_prague_active_at_timestamp(attributes.timestamp) {
BlobParams::prague()
} else {
// cancun
Expand Down

0 comments on commit 7bca0a1

Please sign in to comment.