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@byzantine-lab.io>2019-06-12 17:27:18 +0800
commitc1c4f4c14b8dd99e2373e33814ba06056cdb700c (patch)
treee7d2b2e6663e70271784d21f953b82bc423dbb04 /params/config.go
parent08ec9c78c4acfc09f24ddd0f864504fc58cb07e2 (diff)
downloadgo-tangerine-c1c4f4c14b8dd99e2373e33814ba06056cdb700c.tar.gz
go-tangerine-c1c4f4c14b8dd99e2373e33814ba06056cdb700c.tar.zst
go-tangerine-c1c4f4c14b8dd99e2373e33814ba06056cdb700c.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 83d4a63ba..60180de90 100644
--- a/params/config.go
+++ b/params/config.go
@@ -129,7 +129,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))
)