aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-07-10 20:29:40 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-07-22 19:26:27 +0800
commit487b3b0f7ba36753e557303ff0837a12dda07c25 (patch)
tree77bbbec9887ea8077b10e6c75c982388d8da930c /tests
parent4ca3d49307ba85179474d883694ff2b8e685d429 (diff)
downloadgo-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.tar
go-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.tar.gz
go-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.tar.bz2
go-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.tar.lz
go-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.tar.xz
go-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.tar.zst
go-tangerine-487b3b0f7ba36753e557303ff0837a12dda07c25.zip
cmd, core, eth, common: genesis preparation
Implemented the --genesis flag thru which we can set a custom genesis block, including the official Ethereum genesis block.
Diffstat (limited to 'tests')
-rw-r--r--tests/block_test_util.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/block_test_util.go b/tests/block_test_util.go
index e624cced0..f7c2208b3 100644
--- a/tests/block_test_util.go
+++ b/tests/block_test_util.go
@@ -160,6 +160,8 @@ func runBlockTests(bt map[string]*BlockTest, skipTests []string) error {
}
func runBlockTest(test *BlockTest) error {
cfg := test.makeEthConfig()
+ cfg.GenesisBlock = test.Genesis
+
ethereum, err := eth.New(cfg)
if err != nil {
return err
@@ -170,9 +172,6 @@ func runBlockTest(test *BlockTest) error {
return err
}
- // import the genesis block
- ethereum.ResetWithGenesisBlock(test.Genesis)
-
// import pre accounts
statedb, err := test.InsertPreState(ethereum)
if err != nil {