diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-10-15 13:41:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 13:41:26 +0800 |
commit | a624d79f6bc1b3ca1567c6d16e143aa009f04764 (patch) | |
tree | 5a3e1847e5981313aff0ef9614c877dd734ee159 /core/consensus_test.go | |
parent | 52d490fa7e6b108f71ffb8937554141d5c668ff1 (diff) | |
download | dexon-consensus-a624d79f6bc1b3ca1567c6d16e143aa009f04764.tar.gz dexon-consensus-a624d79f6bc1b3ca1567c6d16e143aa009f04764.tar.zst dexon-consensus-a624d79f6bc1b3ca1567c6d16e143aa009f04764.zip |
core: Fix simulation errors. (#202)
Diffstat (limited to 'core/consensus_test.go')
-rw-r--r-- | core/consensus_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/consensus_test.go b/core/consensus_test.go index 8af7a9b..73c13f2 100644 --- a/core/consensus_test.go +++ b/core/consensus_test.go @@ -465,7 +465,7 @@ func (s *ConsensusTestSuite) TestDKGCRS() { go con.processMsg(con.network.ReceiveChan()) } for _, con := range cons { - con.runDKGTSIG() + con.runDKGTSIG(uint64(0)) } for _, con := range cons { func() { |