Skip to content

Commit

Permalink
eth/catalyst: fix param check
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Aug 19, 2024
1 parent f12bed5 commit a90749f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/catalyst/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ func (api *ConsensusAPI) executeStatelessPayload(params engine.ExecutableData, v
bgu = strconv.Itoa(int(*params.BlobGasUsed))
}
ebg := "nil"
if params.BlobGasUsed != nil {
if params.ExcessBlobGas != nil {
ebg = strconv.Itoa(int(*params.ExcessBlobGas))
}
log.Warn("Invalid ExecuteStatelessPayload params",
Expand Down

0 comments on commit a90749f

Please sign in to comment.