drop unnecessary imports

This commit is contained in:
Sina Mahmoodi 2023-03-01 13:07:00 +03:30 committed by Jared Wasinger
parent ac27dad728
commit efc2c36291
1 changed files with 0 additions and 6 deletions

View File

@ -11,27 +11,21 @@ package {{.Package}}
import ( import (
"fmt" "fmt"
"math/big" "math/big"
"strings"
"errors" "errors"
ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
) )
// Reference imports to suppress errors if they are not otherwise used. // Reference imports to suppress errors if they are not otherwise used.
var ( var (
_ = errors.New _ = errors.New
_ = big.NewInt _ = big.NewInt
_ = strings.NewReader
_ = ethereum.NotFound
_ = bind.Bind _ = bind.Bind
_ = common.Big1 _ = common.Big1
_ = types.BloomLookup _ = types.BloomLookup
_ = event.NewSubscription
_ = abi.ConvertType _ = abi.ConvertType
) )