diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-09-29 23:55:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-29 23:55:45 +0800 |
commit | 34c7476e060e6f537a5af15498cc79bb287865d2 (patch) | |
tree | b09aaa0584de527b6cd0a308edd96a2cc93cfa79 | |
parent | fa841708d78404ab45667a697c8527831ad820d8 (diff) | |
download | dexon-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)
-rw-r--r-- | core/configuration-chain_test.go | 2 |
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] |