From 33d9311270414d8911122a4c7354773786df7f85 Mon Sep 17 00:00:00 2001 From: Mission Liao Date: Thu, 8 Nov 2018 10:35:52 +0800 Subject: Revert "core: unbind global round in Consensus (#304)" (#306) This reverts commit 3714ebf2f1054d9984d37b89cf17e885a5856532. --- core/consensus_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/consensus_test.go') diff --git a/core/consensus_test.go b/core/consensus_test.go index f518630..f5ab69f 100644 --- a/core/consensus_test.go +++ b/core/consensus_test.go @@ -522,7 +522,7 @@ func (s *ConsensusTestSuite) TestDKGCRS() { con.cfgModule.registerDKG(uint64(0), n/3+1) } for _, con := range cons { - con.runDKGTSIG(0, gov.Configuration(0)) + con.runDKGTSIG(uint64(0)) } for _, con := range cons { func() { @@ -536,7 +536,7 @@ func (s *ConsensusTestSuite) TestDKGCRS() { crsFinish := make(chan struct{}) for _, con := range cons { go func(con *Consensus) { - con.runCRS(0) + con.runCRS() crsFinish <- struct{}{} }(con) } -- cgit