From efc2c362910366e163c970de5388f3b8bdc5b516 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Wed, 1 Mar 2023 13:07:00 +0330 Subject: [PATCH] drop unnecessary imports --- accounts/abi/bind/template2.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/accounts/abi/bind/template2.go b/accounts/abi/bind/template2.go index 23e3f9d2b3..34ce763626 100644 --- a/accounts/abi/bind/template2.go +++ b/accounts/abi/bind/template2.go @@ -11,27 +11,21 @@ package {{.Package}} import ( "fmt" "math/big" - "strings" "errors" - ethereum "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" - "github.com/ethereum/go-ethereum/event" ) // Reference imports to suppress errors if they are not otherwise used. var ( _ = errors.New _ = big.NewInt - _ = strings.NewReader - _ = ethereum.NotFound _ = bind.Bind _ = common.Big1 _ = types.BloomLookup - _ = event.NewSubscription _ = abi.ConvertType )