aboutsummaryrefslogtreecommitdiffstats
path: root/core/configuration-chain_test.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-09-29 23:55:45 +0800
committerGitHub <noreply@github.com>2018-09-29 23:55:45 +0800
commit34c7476e060e6f537a5af15498cc79bb287865d2 (patch)
treeb09aaa0584de527b6cd0a308edd96a2cc93cfa79 /core/configuration-chain_test.go
parentfa841708d78404ab45667a697c8527831ad820d8 (diff)
downloaddexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.tar
dexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.tar.gz
dexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.tar.bz2
dexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.tar.lz
dexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.tar.xz
dexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.tar.zst
dexon-consensus-34c7476e060e6f537a5af15498cc79bb287865d2.zip
core: Allow more time for DKG to finish on CircleCI machine. (#152)
Diffstat (limited to 'core/configuration-chain_test.go')
-rw-r--r--core/configuration-chain_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/configuration-chain_test.go b/core/configuration-chain_test.go
index fa3e2df..c50b403 100644
--- a/core/configuration-chain_test.go
+++ b/core/configuration-chain_test.go
@@ -155,7 +155,7 @@ func (s *ConfigurationChainTestSuite) TestConfigurationChain() {
recv := newTestCCReceiver(s)
for _, nID := range s.nIDs {
- gov, err := test.NewGovernance(0, 100*time.Millisecond)
+ gov, err := test.NewGovernance(0, 200*time.Millisecond)
s.Require().NoError(err)
cfgChains[nID] = newConfigurationChain(nID, recv, gov)
recv.nodes[nID] = cfgChains[nID]