From 238210c132c51e59dab8bf491030eb62834e240d Mon Sep 17 00:00:00 2001 From: Avory Date: Fri, 14 Nov 2025 09:37:12 +0200 Subject: [PATCH] Update abi.go --- signer/fourbyte/abi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/fourbyte/abi.go b/signer/fourbyte/abi.go index bdfbd05a1e..cad4e85d41 100644 --- a/signer/fourbyte/abi.go +++ b/signer/fourbyte/abi.go @@ -130,7 +130,7 @@ func parseCallData(calldata []byte, unescapedAbidata string) (*decodedCallData, if !bytes.Equal(encoded, argdata) { was := common.Bytes2Hex(encoded) exp := common.Bytes2Hex(argdata) - return nil, fmt.Errorf("WARNING: Supplied data is stuffed with extra data. \nWant %s\nHave %s\nfor method %v", exp, was, method.Sig) + return nil, fmt.Errorf("WARNING: Supplied data is stuffed with extra data. \nWant %s\nHave %s\nfor method %v", was, exp, method.Sig) } return &decoded, nil }