fix: replace common package to libcommon package in abigen (#6879)

fix: replace common package to libcommon package in `abigen`.
This commit is contained in:
J1ang 2023-02-15 10:46:12 +08:00 committed by GitHub
parent 58fcc04575
commit b1fce955ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ import (
ethereum "github.com/ledgerwatch/erigon"
"github.com/ledgerwatch/erigon/accounts/abi"
"github.com/ledgerwatch/erigon/accounts/abi/bind"
"github.com/ledgerwatch/erigon/common"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/event"
)
@ -105,7 +105,7 @@ var (
_ = strings.NewReader
_ = ethereum.NotFound
_ = bind.Bind
_ = common.Big1
_ = libcommon.Big1
_ = types.BloomLookup
_ = event.NewSubscription
)