aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/configuration-chain.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/configuration-chain.go b/core/configuration-chain.go
index 4938ba0..fbd691f 100644
--- a/core/configuration-chain.go
+++ b/core/configuration-chain.go
@@ -91,8 +91,7 @@ func (cc *configurationChain) registerDKG(round uint64, threshold int) {
defer cc.dkgLock.Unlock()
if cc.dkg != nil {
cc.logger.Error("Previous DKG is not finished")
- // TODO(mission): do we have to retry DKG initiation here?
- return
+ // TODO(mission): return here and fix CI failure.
}
dkgSet, err := cc.cache.GetDKGSet(round)
if err != nil {