diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-15 13:29:48 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:19 +0800 |
commit | 5791965d8af0b1d8d30ae7232879d063cb5cd8f0 (patch) | |
tree | 37c6a697c4b5b82eb119f5fa65748bd2765ec03b /core/genesis_test.go | |
parent | 4c520e06a04c0b734dcc703dd007bb89cfb15a9d (diff) | |
download | go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.gz go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.zst go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.zip |
core: fix tests
Diffstat (limited to 'core/genesis_test.go')
-rw-r--r-- | core/genesis_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/genesis_test.go b/core/genesis_test.go index 288883af2..267086f9b 100644 --- a/core/genesis_test.go +++ b/core/genesis_test.go @@ -43,16 +43,16 @@ func TestDefaultGenesisBlock(t *testing.T) { func TestSetupGenesis(t *testing.T) { var ( - customghash = common.HexToHash("0xb6ba0591a77fc67883bb23a0463ecacede39e63176ec65fd137466c4cda91af5") + customghash = common.HexToHash("0xe19bf9c49cae55e72edfdfa9f4ef867defeb3747de25102740b7cebc5b9cdb1a") customg = Genesis{ - Config: ¶ms.ChainConfig{HomesteadBlock: big.NewInt(3), Dexcon: params.TestChainConfig.Dexcon}, + Config: ¶ms.ChainConfig{HomesteadBlock: big.NewInt(3)}, Alloc: GenesisAlloc{ {1}: {Balance: big.NewInt(1), Storage: map[common.Hash]common.Hash{{1}: {1}}}, }, } oldcustomg = customg ) - oldcustomg.Config = ¶ms.ChainConfig{HomesteadBlock: big.NewInt(2), Dexcon: params.TestChainConfig.Dexcon} + oldcustomg.Config = ¶ms.ChainConfig{HomesteadBlock: big.NewInt(2)} tests := []struct { name string fn func(ethdb.Database) (*params.ChainConfig, common.Hash, error) |