diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-13 15:49:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | f74e93dcd930772d918e17a1b4ed9c8f5d016160 (patch) | |
tree | 02b91676643647be236baf6dcd897d5f8a9f46c3 /params/config.go | |
parent | cb860664b1a831a2fd1353c2cee36029c38268df (diff) | |
download | dexon-f74e93dcd930772d918e17a1b4ed9c8f5d016160.tar.gz dexon-f74e93dcd930772d918e17a1b4ed9c8f5d016160.tar.zst dexon-f74e93dcd930772d918e17a1b4ed9c8f5d016160.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 c1a507cc8..b5b99b1e3 100644 --- a/params/config.go +++ b/params/config.go @@ -122,7 +122,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), 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), 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), big.NewInt(0), nil, new(EthashConfig), nil, nil} TestRules = TestChainConfig.Rules(new(big.Int)) ) |