accounts/abi/abigen: fix linter error

This commit is contained in:
Miro 2025-04-10 14:21:17 -04:00
parent 2c819dd5ac
commit 213ad18a09

View file

@ -37,7 +37,6 @@ var (
// ReadInteger reads the integer based on its kind and returns the appropriate value. // ReadInteger reads the integer based on its kind and returns the appropriate value.
func ReadInteger(typ Type, b []byte) (interface{}, error) { func ReadInteger(typ Type, b []byte) (interface{}, error) {
if typ.T == UintTy { if typ.T == UintTy {
ret := new(uint256.Int).SetBytes(b) ret := new(uint256.Int).SetBytes(b)