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: 17695 fixed English typos in user messages #17844

Merged
merged 7 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private static void trackBlockNumber(final long currentBlockNumber) {
if (currentBlockNumber <= prevBlockNumber) {
LOGGER.error(
MARKER,
"Found new block number is equal or less than the prevous one, current {} vs" + " prev {}",
"Found new block number is equal or less than the previous one, current {} vs" + " prev {}",
currentBlockNumber,
prevBlockNumber);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public ResponseCodeEnum update(@NonNull final Bytes bytes) {
} else {
// If we don't have an expiration time, then we default to 0, which will effectively expire the
// current schedule immediately. This is the safest option.
logger.warn("The current fee schedule has no expiry time, defaulting to 0, effectively expiring it"
logger.warn("The current fee schedule has no expiry time, defaulting to 0, effectively expiring it "
+ "immediately");
this.currentScheduleExpirationSeconds = 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ private static Stream<DynamicTest> recordPayerBalance(LongConsumer learner) {
.getBalance());
}));
} catch (Exception e) {
log.warn("Unable to record inital payer balance, skipping it!", e);
log.warn("Unable to record initial payer balance, skipping it!", e);
errorsOccurred.set(true);
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public Reference(String dataString) {
}
crc = crc8(dataUnscrambled);
if (data[data.length - 1] != crc) {
throw new InvalidParameterException("Invalid string: fails the cyclic redundency check");
throw new InvalidParameterException("Invalid string: fails the cyclic redundancy check");
}
}

Expand Down
Loading