Skip to content

Commit 11bd9dd

Browse files
authored
fix(builder): prague blob params activation (#13810)
1 parent fd52b63 commit 11bd9dd

File tree

1 file changed

+1
-1
lines changed
  • crates/ethereum/payload/src

1 file changed

+1
-1
lines changed

crates/ethereum/payload/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ where
429429
.map_err(PayloadBuilderError::other)?;
430430

431431
excess_blob_gas = if chain_spec.is_cancun_active_at_timestamp(parent_header.timestamp) {
432-
let blob_params = if chain_spec.is_prague_active_at_timestamp(parent_header.timestamp) {
432+
let blob_params = if chain_spec.is_prague_active_at_timestamp(attributes.timestamp) {
433433
BlobParams::prague()
434434
} else {
435435
// cancun

0 commit comments

Comments
 (0)