diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-23 20:58:34 +0800 |
---|---|---|
committer | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-23 21:14:36 +0800 |
commit | 942086cc71a13ee010182299de3b5011e3618d57 (patch) | |
tree | 2df13acdbb81f6a967c92b0a6f3ad7425d31070d | |
parent | cd0d66971af3e669819816408a7a5ace642f2342 (diff) | |
download | dexon-942086cc71a13ee010182299de3b5011e3618d57.tar.gz dexon-942086cc71a13ee010182299de3b5011e3618d57.tar.zst dexon-942086cc71a13ee010182299de3b5011e3618d57.zip |
param: Update dmoment
-rw-r--r-- | params/config.go | 2 | ||||
-rw-r--r-- | vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/params/config.go b/params/config.go index 04289f498..8af497588 100644 --- a/params/config.go +++ b/params/config.go @@ -82,7 +82,7 @@ var ( // TestnetChainConfig contains the chain parameters to run a node on the Taiwan test network. TestnetChainConfig = &ChainConfig{ ChainID: big.NewInt(238), - DMoment: 1548220800, + DMoment: 1548249900, HomesteadBlock: big.NewInt(0), DAOForkBlock: nil, DAOForkSupport: true, diff --git a/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go b/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go index 2cef6bc6d..413f16caa 100644 --- a/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go +++ b/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go @@ -577,7 +577,7 @@ func newConsensusForRound( logger: logger, resetRandomnessTicker: make(chan struct{}), resetDeliveryGuardTicker: make(chan struct{}), - msgChan: make(chan interface{}, 1024), + msgChan: make(chan interface{}, 10240), } con.ctx, con.ctxCancel = context.WithCancel(context.Background()) con.baMgr = newAgreementMgr(con, initRound, initRoundBeginTime) |