aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorbojie <bojie@dexon.org>2019-03-11 17:43:52 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:50:03 +0800
commitdccc432e425c51035a901373d9f6a4452ac4c6ba (patch)
treebacc4846e61f3ffd4f0a80a729590789337e7730 /eth
parent5699504363e928a7c2d84363014d7174b49bad2a (diff)
downloaddexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.tar
dexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.tar.gz
dexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.tar.bz2
dexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.tar.lz
dexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.tar.xz
dexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.tar.zst
dexon-dccc432e425c51035a901373d9f6a4452ac4c6ba.zip
app: new app test flow (#244)
Diffstat (limited to 'eth')
-rw-r--r--eth/helper_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/eth/helper_test.go b/eth/helper_test.go
index e4d7a28fb..9a30afef3 100644
--- a/eth/helper_test.go
+++ b/eth/helper_test.go
@@ -30,7 +30,6 @@ import (
"github.com/dexon-foundation/dexon/common"
"github.com/dexon-foundation/dexon/consensus/ethash"
"github.com/dexon-foundation/dexon/core"
- "github.com/dexon-foundation/dexon/core/rawdb"
"github.com/dexon-foundation/dexon/core/types"
"github.com/dexon-foundation/dexon/core/vm"
"github.com/dexon-foundation/dexon/crypto"
@@ -62,9 +61,6 @@ func newTestProtocolManager(mode downloader.SyncMode, blocks int, generator func
genesis = gspec.MustCommit(db)
blockchain, _ = core.NewBlockChain(db, nil, gspec.Config, engine, vm.Config{}, nil)
)
- if err := rawdb.WriteLastRoundNumber(db, 0); err != nil {
- panic(err)
- }
chain, _ := core.GenerateChain(gspec.Config, genesis, ethash.NewFaker(), db, blocks, generator)
if _, err := blockchain.InsertChain(chain); err != nil {
panic(err)