We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b2371 commit 3ab199aCopy full SHA for 3ab199a
ethclient/ethclient.go
@@ -735,6 +735,7 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
735
}
736
if len(msg.Data) > 0 {
737
arg["input"] = hexutil.Bytes(msg.Data)
738
+ arg["data"] = hexutil.Bytes(msg.Data)
739
740
if msg.Value != nil {
741
arg["value"] = (*hexutil.Big)(msg.Value)
ethclient/gethclient/gethclient.go
@@ -226,6 +226,7 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
226
227
228
229
230
231
232
0 commit comments