From 80e5e3bd98b0d1cc89e6221f5647d94d61f741b9 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Wed, 8 Apr 2020 10:22:47 +0200 Subject: [PATCH] Cosmetic changes to restart travis build --- accounts/abi/bind/topics.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/accounts/abi/bind/topics.go b/accounts/abi/bind/topics.go index 126a1edef8..7d844c3ae0 100644 --- a/accounts/abi/bind/topics.go +++ b/accounts/abi/bind/topics.go @@ -125,7 +125,7 @@ func parseTopicsIntoMap(out map[string]interface{}, fields abi.Arguments, topics // // Note, dynamic types cannot be reconstructed since they get mapped to Keccak256 // hashes as the topic value! -func parseTopicWithSetter(fields abi.Arguments, topics []common.Hash, set func(abi.Argument, interface{})) error { +func parseTopicWithSetter(fields abi.Arguments, topics []common.Hash, setter func(abi.Argument, interface{})) error { // Sanity check that the fields and topics match up if len(fields) != len(topics) { return errors.New("topic/field count mismatch") @@ -157,8 +157,8 @@ func parseTopicWithSetter(fields abi.Arguments, topics []common.Hash, set func(a return err } } - // Use the set function to store the value - set(arg, reconstr) + // Use the setter function to store the value + setter(arg, reconstr) } return nil