From 961231f91fc4c7edc122ccdf337d804a885b1f6b Mon Sep 17 00:00:00 2001 From: Sonic Date: Fri, 12 Oct 2018 15:02:33 +0800 Subject: dex: network: implement the network interface --- params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'params/config.go') 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)) ) -- cgit