aboutsummaryrefslogtreecommitdiffstats
path: root/core/consensus.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/consensus.go')
-rw-r--r--core/consensus.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/consensus.go b/core/consensus.go
index b9da4f0..a449701 100644
--- a/core/consensus.go
+++ b/core/consensus.go
@@ -660,7 +660,8 @@ func (con *Consensus) initialRound(
// unexpected network fluctuation and ensure the robustness.
for (con.gov.CRS(nextRound) == common.Hash{}) {
con.logger.Info("CRS is not ready yet. Try again later...",
- "nodeID", con.ID)
+ "nodeID", con.ID,
+ "round", nextRound)
time.Sleep(500 * time.Millisecond)
}
nextDkgSet, err := con.nodeSetCache.GetDKGSet(nextRound)