diff options
author | Sonic <sonic@cobinhood.com> | 2018-10-12 15:02:33 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 961231f91fc4c7edc122ccdf337d804a885b1f6b (patch) | |
tree | 4de8ac71927a013dedb65a7be91770c1a3fc97bb /params/config.go | |
parent | f4936aa1eb7fa01f56c28f081af266c2a4924a61 (diff) | |
download | dexon-961231f91fc4c7edc122ccdf337d804a885b1f6b.tar.gz dexon-961231f91fc4c7edc122ccdf337d804a885b1f6b.tar.zst dexon-961231f91fc4c7edc122ccdf337d804a885b1f6b.zip |
dex: network: implement the network interface
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 967e70b23..b2f70c6ab 100644 --- a/params/config.go +++ b/params/config.go @@ -150,7 +150,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)) ) |