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 /params/config.go | |
parent | 4c520e06a04c0b734dcc703dd007bb89cfb15a9d (diff) | |
download | go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.gz go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.bz2 go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.lz go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.xz go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.tar.zst go-tangerine-5791965d8af0b1d8d30ae7232879d063cb5cd8f0.zip |
core: fix tests
Diffstat (limited to 'params/config.go')
-rw-r--r-- | params/config.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/params/config.go b/params/config.go index 3ae676d7e..101ac87b1 100644 --- a/params/config.go +++ b/params/config.go @@ -26,8 +26,8 @@ import ( // Genesis hashes to enforce below configs on. var ( - MainnetGenesisHash = common.HexToHash("0xc333fc9bcbb59ad2646fff9fd253559b144340bd27a3851cc7737ff73e405e91") - TestnetGenesisHash = common.HexToHash("0x744c925a373bbbc4b46adf0e925f1cd06d587e89bc9db8260b2163238cd980ef") + MainnetGenesisHash = common.HexToHash("0x52b1459248252fcec3e9429362bdbc576c09515cfac0a87b278b2bf98d640c42") + TestnetGenesisHash = common.HexToHash("0x868521018a07ea7ccd1f0ca4f6e554b832187add550f9b2ac55664bd96ff264d") ) // TrustedCheckpoints associates each known checkpoint with the genesis hash of @@ -151,7 +151,7 @@ var ( // // This configuration is intentionally not using keyed fields to force anyone // adding flags to the config to also have to set these fields. - AllEthashProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, new(EthashConfig), nil, new(DexconConfig)} + AllEthashProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, new(EthashConfig), nil, nil} // AllCliqueProtocolChanges contains every protocol change (EIPs) introduced // and accepted by the Ethereum core developers into the Clique consensus. @@ -160,6 +160,8 @@ var ( // adding flags to the config to also have to set these fields. AllCliqueProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, &CliqueConfig{Period: 0, Epoch: 30000}, nil} + AllDexconProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, new(DexconConfig)} + TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, new(EthashConfig), nil, nil} TestRules = TestChainConfig.Rules(new(big.Int)) ) |