mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Update ethclient.go
This commit is contained in:
parent
5273e55f45
commit
74196d4cc5
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue