Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix string formatting bug #6337

Merged
merged 1 commit into from May 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -33,7 +33,7 @@ public class DefaultSignedStateValidator implements SignedStateValidator {
private static final String STATE_TOO_EARLY_MESSAGE =
"""
Received signed state is for a round smaller than, or a consensus earlier than, we started with. \
Original round %d, received round %d. Original timestamp %t, received timestamp %t.""";
Original round %d, received round %d. Original timestamp %s, received timestamp %s.""";
private static final String STATE_TOO_EARLY_LOG_MESSAGE =
"""
State is too old. Failed reconnect state:
Expand Down