Skip to content

Commit

Permalink
Update ethclient.go
Browse files Browse the repository at this point in the history
  • Loading branch information
fjl authored Feb 14, 2024
1 parent 5273e55 commit 74196d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethclient/ethclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
arg["accessList"] = msg.AccessList
}
if msg.BlobGasFeeCap != nil {
arg["maxFeePerBlobGas"] = msg.BlobGasFeeCap
arg["maxFeePerBlobGas"] = (*hexutil.Big)(msg.BlobGasFeeCap)
}
if msg.BlobHashes != nil {
arg["blobVersionedHashes"] = msg.BlobHashes
Expand Down

0 comments on commit 74196d4

Please sign in to comment.