From 213ad18a09663914a23f712c02cce8b988fb6e61 Mon Sep 17 00:00:00 2001 From: Miro Date: Thu, 10 Apr 2025 14:21:17 -0400 Subject: [PATCH] accounts/abi/abigen: fix linter error --- accounts/abi/unpack.go | 1 - 1 file changed, 1 deletion(-) diff --git a/accounts/abi/unpack.go b/accounts/abi/unpack.go index 005600d786..f2b30b2afe 100644 --- a/accounts/abi/unpack.go +++ b/accounts/abi/unpack.go @@ -37,7 +37,6 @@ var ( // ReadInteger reads the integer based on its kind and returns the appropriate value. func ReadInteger(typ Type, b []byte) (interface{}, error) { - if typ.T == UintTy { ret := new(uint256.Int).SetBytes(b)