diff options
Diffstat (limited to 'console/console_test.go')
-rw-r--r-- | console/console_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console/console_test.go b/console/console_test.go index fd3459139..77dcc198c 100644 --- a/console/console_test.go +++ b/console/console_test.go @@ -28,10 +28,10 @@ import ( "time" "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/internal/jsre" "github.com/ethereum/go-ethereum/node" + "github.com/ethereum/go-ethereum/params" ) const ( @@ -97,7 +97,7 @@ func newTester(t *testing.T, confOverride func(*eth.Config)) *tester { t.Fatalf("failed to create node: %v", err) } ethConf := ð.Config{ - ChainConfig: &core.ChainConfig{HomesteadBlock: new(big.Int)}, + ChainConfig: ¶ms.ChainConfig{HomesteadBlock: new(big.Int)}, Etherbase: common.HexToAddress(testAddress), PowTest: true, } |