diff options
Diffstat (limited to 'console/console_test.go')
-rw-r--r-- | console/console_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/console/console_test.go b/console/console_test.go index 7738d0c44..8a4f1bf13 100644 --- a/console/console_test.go +++ b/console/console_test.go @@ -30,10 +30,10 @@ import ( "github.com/ethereum/go-ethereum/accounts" "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 ( @@ -100,10 +100,10 @@ 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{ChainId: new(big.Int), HomesteadBlock: new(big.Int)}, Etherbase: common.HexToAddress(testAddress), - AccountManager: accman, PowTest: true, + AccountManager: accman, } if confOverride != nil { confOverride(ethConf) |