You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This is a submission for an old voting round, skip it
221
-
logger.Debugf("Ignoring message for voting round %d, protocolID %d - before policy startVotingRoundID", protocolMessage.VotingRoundID, protocolMessage.ProtocolID)
220
+
logger.Warnf("Ignoring message for voting round %d, protocolID %d - before policy startVotingRoundID", protocolMessage.VotingRoundID, protocolMessage.ProtocolID)
222
221
continue
223
222
}
224
-
returnfmt.Errorf("no signing policy found for voting round %d", protocolMessage.VotingRoundID) // this stops the whole fsp client
223
+
logger.Panicf("messagesChannelListener: no signing policy found for voting round %d. Storage is empty: %v", protocolMessage.VotingRoundID, c.signingPolicyStorage.OldestStored() ==nil) // this stops the whole fsp client, it only happens if there is no signing policy in the storage.
// This is a submission for an old voting round, skip it
72
-
logger.Debugf("Ignoring submitted signature for voting round %d, protocolID %d - before policy startVotingRoundID", payloadItem.votingRoundID, payloadItem.protocolID)
71
+
logger.Warnf("ProcessSubmissionData: Ignoring submitted signature for voting round %d, protocolID %d - before policy startVotingRoundID", payloadItem.votingRoundID, payloadItem.protocolID)
73
72
continue
74
73
}
75
-
returnfmt.Errorf("no signing policy found for voting round %d", payloadItem.votingRoundID) // this stops the whole fsp client
74
+
logger.Panicf("ProcessSubmissionData: no signing policy found for voting round %d. Storage is empty: %v", payloadItem.votingRoundID, c.signingPolicyStorage.OldestStored() ==nil) // this stops the whole fsp client, it only happens if there is no signing policy in the storage.
0 commit comments