diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-13 15:49:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 8085a1811dc40b6c1a942ab445beb850f65617ba (patch) | |
tree | b6c40c8e41f15a6fcbaa8f595114c1a4b69ecee4 /params/config.go | |
parent | afdda8164c477f59064f16c003b6db5baf412f6a (diff) | |
download | dexon-8085a1811dc40b6c1a942ab445beb850f65617ba.tar.gz dexon-8085a1811dc40b6c1a942ab445beb850f65617ba.tar.zst dexon-8085a1811dc40b6c1a942ab445beb850f65617ba.zip |
params: Do not use DEXON config for test. (#15)
Diffstat (limited to 'params/config.go')
-rw-r--r-- | params/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index 01e7e43bb..405f32c1b 100644 --- a/params/config.go +++ b/params/config.go @@ -120,7 +120,7 @@ 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), nil, nil, &CliqueConfig{Period: 0, Epoch: 30000}, nil} - 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), nil, new(EthashConfig), nil, TestnetChainConfig.Dexcon} + 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), nil, new(EthashConfig), nil, nil} TestRules = TestChainConfig.Rules(new(big.Int)) ) |