aboutsummaryrefslogtreecommitdiffstats
path: root/params/config.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-11-13 15:49:49 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-12 12:19:09 +0800
commitf74e93dcd930772d918e17a1b4ed9c8f5d016160 (patch)
tree02b91676643647be236baf6dcd897d5f8a9f46c3 /params/config.go
parentcb860664b1a831a2fd1353c2cee36029c38268df (diff)
downloaddexon-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.go2
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))
)