From 0862a58e958b37d627f1b273b00ebf26e187d5f0 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Mon, 14 May 2018 10:21:26 +0200 Subject: [PATCH] accounts/abi: Fix the last grammar comment --- accounts/abi/reflect.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounts/abi/reflect.go b/accounts/abi/reflect.go index 6b8564714f..0193517a42 100644 --- a/accounts/abi/reflect.go +++ b/accounts/abi/reflect.go @@ -177,8 +177,8 @@ func mapAbiToStructFields(args Arguments, value reflect.Value) (map[string]strin return nil, fmt.Errorf("abi: purely underscored output cannot unpack to struct") } - // this abi has already been paired, skip... unless exists another not still assigned - // struct field with the same field name, in the case raise an error: + // this abi has already been paired, skip it... unless there exists another, yet unassigned + // struct field with the same field name. If so, raise an error: // abi: [ { "name": "value" } ] // struct { Value *big.Int , Value1 *big.Int `abi:"value"`} if abi2struct[abiFieldName] != "" {