From 03c190fcbaebc90c3a4cc3120744884818cb7dfa Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 21 Nov 2019 16:45:20 +0100 Subject: [PATCH] accounts/abi: restore unused field for test --- accounts/abi/event_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/accounts/abi/event_test.go b/accounts/abi/event_test.go index 98bf1edfc2..090b9217db 100644 --- a/accounts/abi/event_test.go +++ b/accounts/abi/event_test.go @@ -173,6 +173,7 @@ func TestEventTupleUnpack(t *testing.T) { type EventTransferWithTag struct { // this is valid because `value` is not exportable, // so value is only unmarshalled into `Value1`. + value *big.Int //lint:ignore U1000 unused field is part of test Value1 *big.Int `abi:"value"` }