From 78b7d0532f57b4c14ea90953b99b2571d6aa347f Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Thu, 9 Apr 2020 12:53:45 +0200 Subject: [PATCH] accounts/abi: fixed rebase error --- accounts/abi/argument.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/argument.go b/accounts/abi/argument.go index a92d2277e9..c0c87c5308 100644 --- a/accounts/abi/argument.go +++ b/accounts/abi/argument.go @@ -275,7 +275,7 @@ func (arguments Arguments) UnpackValues(data []byte) ([]interface{}, error) { retval := make([]interface{}, 0, len(nonIndexedArgs)) virtualArgs := 0 for index, arg := range nonIndexedArgs { - marshalledValue, err := toGoType((index+virtualArgs)*32, arg.Type, data) + marshalledValue, err := ToGoType((index+virtualArgs)*32, arg.Type, data) if arg.Type.T == ArrayTy && !isDynamicType(arg.Type) { // If we have a static array, like [3]uint256, these are coded as // just like uint256,uint256,uint256.