Skip to content

Commit

Permalink
fix(builder): prague blob params activation (#13810)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrasiuk authored Jan 15, 2025
1 parent fd52b63 commit 11bd9dd
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 @@ -429,7 +429,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 11bd9dd

Please sign in to comment.