diff options
author | Sonic <sonic@cobinhood.com> | 2018-10-12 15:02:33 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:49 +0800 |
commit | 1da23cc940d308e5376e3056c2737ddd2f01642a (patch) | |
tree | 39543166fae33dfe2dd70ce03900384c0ebd6d51 /params | |
parent | cdf1f022696971d9d6209d577ed0b578e7462007 (diff) | |
download | dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.tar dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.tar.gz dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.tar.bz2 dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.tar.lz dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.tar.xz dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.tar.zst dexon-1da23cc940d308e5376e3056c2737ddd2f01642a.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 0ccc2fbc8..44b708f0d 100644 --- a/params/config.go +++ b/params/config.go @@ -151,7 +151,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, 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, &DexconConfig{}} TestRules = TestChainConfig.Rules(new(big.Int)) ) |