diff options
author | Sonic <sonic@cobinhood.com> | 2018-10-12 15:02:33 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:23:39 +0800 |
commit | 046ea228bf3892a01b8de060390e766483a69249 (patch) | |
tree | fd03cfde6234c4be590a1fcd6e6c69afea03a705 /params | |
parent | 8250fd5357e8a9c4b634cf289489ce2c4ec3470c (diff) | |
download | go-tangerine-046ea228bf3892a01b8de060390e766483a69249.tar go-tangerine-046ea228bf3892a01b8de060390e766483a69249.tar.gz go-tangerine-046ea228bf3892a01b8de060390e766483a69249.tar.bz2 go-tangerine-046ea228bf3892a01b8de060390e766483a69249.tar.lz go-tangerine-046ea228bf3892a01b8de060390e766483a69249.tar.xz go-tangerine-046ea228bf3892a01b8de060390e766483a69249.tar.zst go-tangerine-046ea228bf3892a01b8de060390e766483a69249.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 1ea2ab3d2..4768cdcd0 100644 --- a/params/config.go +++ b/params/config.go @@ -160,7 +160,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)) ) |