Skip to content

Commit

Permalink
move warning message to error
Browse files Browse the repository at this point in the history
  • Loading branch information
algoidan committed Oct 26, 2022
1 parent abb58c1 commit ae5aa9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/accountManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (manager *AccountManager) StateProofKeys(rnd basics.Round) (out []account.S
if part.StateProof != nil && part.OverlapsInterval(rnd, rnd) {
partRndSecrets, err := manager.registry.GetStateProofSecretsForRound(part.ParticipationID, rnd)
if err != nil {
manager.log.Errorf("error while loading round secrets from participation registry: %v", err)
manager.log.Warnf("could not load state proof keys from participation registry: %v", err)
continue
}
out = append(out, partRndSecrets)
Expand Down

0 comments on commit ae5aa9b

Please sign in to comment.