ethclient: apply accessList field in toCallArg (#28832)

Co-authored-by: Felix Lange <fjl@twurst.com>
This commit is contained in:
colin 2024-01-19 23:43:02 +08:00 committed by Daniel Liu
parent 0237985f58
commit bb55c1044b
2 changed files with 12 additions and 0 deletions

View file

@ -585,5 +585,8 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
if msg.GasTipCap != nil {
arg["maxPriorityFeePerGas"] = (*hexutil.Big)(msg.GasTipCap)
}
if msg.AccessList != nil {
arg["accessList"] = msg.AccessList
}
return arg
}

View file

@ -207,6 +207,15 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
if msg.GasPrice != nil {
arg["gasPrice"] = (*hexutil.Big)(msg.GasPrice)
}
if msg.GasFeeCap != nil {
arg["maxFeePerGas"] = (*hexutil.Big)(msg.GasFeeCap)
}
if msg.GasTipCap != nil {
arg["maxPriorityFeePerGas"] = (*hexutil.Big)(msg.GasTipCap)
}
if msg.AccessList != nil {
arg["accessList"] = msg.AccessList
}
return arg
}