From bddf8f76c862fc4d096e8f51cc09b16640e3f13a Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Wed, 27 Jan 2016 08:38:53 +0100 Subject: account/abi: implements event parsing Implementation of basic event parsing and its input types. This separates methods and events and fixes an issue with go type parsing and validation. --- accounts/abi/type.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'accounts/abi/type.go') diff --git a/accounts/abi/type.go b/accounts/abi/type.go index 8f0238fc9..32f761ef0 100644 --- a/accounts/abi/type.go +++ b/accounts/abi/type.go @@ -218,5 +218,5 @@ func (t Type) pack(v interface{}) ([]byte, error) { } } - return nil, fmt.Errorf("ABI: bad input given %T", value.Kind()) + return nil, fmt.Errorf("ABI: bad input given %v", value.Kind()) } -- cgit