diff --git a/consensus/beacon/consensus.go b/consensus/beacon/consensus.go index cbeb5e88d6..05cde275fa 100644 --- a/consensus/beacon/consensus.go +++ b/consensus/beacon/consensus.go @@ -19,6 +19,8 @@ package beacon import ( "errors" "fmt" + "math/big" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/consensus" "github.com/ethereum/go-ethereum/consensus/misc/eip1559" @@ -30,7 +32,6 @@ import ( "github.com/ethereum/go-ethereum/rpc" "github.com/ethereum/go-ethereum/trie" "github.com/holiman/uint256" - "math/big" ) // Proof-of-stake protocol constants. diff --git a/graphql/graphql_test.go b/graphql/graphql_test.go index 2e4be71475..6adb45a554 100644 --- a/graphql/graphql_test.go +++ b/graphql/graphql_test.go @@ -20,7 +20,6 @@ import ( "context" "encoding/json" "fmt" - "github.com/ethereum/go-ethereum/common/math" "io" "math/big" "net/http" @@ -28,6 +27,8 @@ import ( "testing" "time" + "github.com/ethereum/go-ethereum/common/math" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/consensus" "github.com/ethereum/go-ethereum/consensus/beacon" diff --git a/params/config.go b/params/config.go index ee33bb3118..4abf06f021 100644 --- a/params/config.go +++ b/params/config.go @@ -18,9 +18,10 @@ package params import ( "fmt" - "github.com/ethereum/go-ethereum/common/math" "math/big" + "github.com/ethereum/go-ethereum/common/math" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/params/forks" )