aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-01-23 13:10:51 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:50:02 +0800
commit4146fd11dbd82a620d3c7ddea8d848dc49675bf8 (patch)
treea64aa0de38ffb8b21f007a61306cf897cc445b0a
parent6929755babc8e65b8bf217d42b2dc64ef93330d2 (diff)
downloaddexon-4146fd11dbd82a620d3c7ddea8d848dc49675bf8.tar.gz
dexon-4146fd11dbd82a620d3c7ddea8d848dc49675bf8.tar.zst
dexon-4146fd11dbd82a620d3c7ddea8d848dc49675bf8.zip
params: Update testnet dmoment
-rw-r--r--params/config.go2
-rw-r--r--vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/params/config.go b/params/config.go
index 91277197f..87ef3aa7e 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)