diff options
author | Sonic <sonic@cobinhood.com> | 2018-10-12 15:02:33 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | a468fd43993733d7ad89c14d038d91e88e12f611 (patch) | |
tree | 8aef4eb4e6c587edcdff15e85094c15f9e4322bd /params | |
parent | 0f649b2cb78a3f35b870b2db94a92ec9297886b6 (diff) | |
download | dexon-a468fd43993733d7ad89c14d038d91e88e12f611.tar dexon-a468fd43993733d7ad89c14d038d91e88e12f611.tar.gz dexon-a468fd43993733d7ad89c14d038d91e88e12f611.tar.bz2 dexon-a468fd43993733d7ad89c14d038d91e88e12f611.tar.lz dexon-a468fd43993733d7ad89c14d038d91e88e12f611.tar.xz dexon-a468fd43993733d7ad89c14d038d91e88e12f611.tar.zst dexon-a468fd43993733d7ad89c14d038d91e88e12f611.zip |
dex: network: implement the network interface
Diffstat (limited to 'params')
-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 33e1f6562..c0cf782a6 100644 --- a/params/config.go +++ b/params/config.go @@ -119,7 +119,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, 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, &DexconConfig{}} TestRules = TestChainConfig.Rules(new(big.Int)) ) |