From e79821cabeda5c6907f03073d11fe6d83367f494 Mon Sep 17 00:00:00 2001 From: tzapu Date: Thu, 13 Dec 2018 16:12:19 +0200 Subject: accounts/abi: argument type and name were reversed (#17947) argument type and name were reversed --- accounts/abi/event.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'accounts/abi/event.go') diff --git a/accounts/abi/event.go b/accounts/abi/event.go index a3f6be973..9392c1990 100644 --- a/accounts/abi/event.go +++ b/accounts/abi/event.go @@ -36,12 +36,12 @@ type Event struct { func (e Event) String() string { inputs := make([]string, len(e.Inputs)) for i, input := range e.Inputs { - inputs[i] = fmt.Sprintf("%v %v", input.Name, input.Type) + inputs[i] = fmt.Sprintf("%v %v", input.Type, input.Name) if input.Indexed { - inputs[i] = fmt.Sprintf("%v indexed %v", input.Name, input.Type) + inputs[i] = fmt.Sprintf("%v indexed %v", input.Type, input.Name) } } - return fmt.Sprintf("e %v(%v)", e.Name, strings.Join(inputs, ", ")) + return fmt.Sprintf("event %v(%v)", e.Name, strings.Join(inputs, ", ")) } // Id returns the canonical representation of the event's signature used by the -- cgit