diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-23 13:10:51 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | e8f768ccdbe2c7f5039153f6c6e7c2b668831fb2 (patch) | |
tree | 7757a8c86449a1a975e6b3cd996ef49dfecc0113 | |
parent | d2eda44dcaa123b34a151831c4568fae8f2eef85 (diff) | |
download | dexon-e8f768ccdbe2c7f5039153f6c6e7c2b668831fb2.tar.gz dexon-e8f768ccdbe2c7f5039153f6c6e7c2b668831fb2.tar.zst dexon-e8f768ccdbe2c7f5039153f6c6e7c2b668831fb2.zip |
params: Update testnet 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 b9b99e675..b9b3fbd6d 100644 --- a/params/config.go +++ b/params/config.go @@ -83,7 +83,7 @@ var ( // TestnetChainConfig contains the chain parameters to run a node on the Taiwan test network. TestnetChainConfig = &ChainConfig{ ChainID: big.NewInt(238), - DMoment: 1548124200, + 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) |