Skip to content

Commit 18425ef

Browse files
committed
fix typo
1 parent 1f0f1ab commit 18425ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/fortuna/src/keeper/commitment.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub async fn update_commitments_if_necessary(
5151
let outstanding_requests =
5252
provider_info.sequence_number - provider_info.current_commitment_sequence_number;
5353
if outstanding_requests > threshold {
54-
// NOTE: This log message triggers a a grafana alert. If you want to change the text, please change the alert also.
54+
// NOTE: This log message triggers a grafana alert. If you want to change the text, please change the alert also.
5555
tracing::warn!("Update commitments threshold reached -- possible outage or DDOS attack. Number of outstanding requests: {:?} Threshold: {:?}", outstanding_requests, threshold);
5656
let seq_number = provider_info.sequence_number - 1;
5757
let provider_revelation = chain_state

apps/fortuna/src/keeper/fee.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ pub async fn withdraw_fees_if_necessary(
6464
let contract_call = contract.withdraw_as_fee_manager(provider_address, fees);
6565
send_and_confirm(contract_call).await?;
6666
} else if keeper_balance < min_balance {
67-
// NOTE: This log message triggers a a grafana alert. If you want to change the text, please change the alert also.
67+
// NOTE: This log message triggers a grafana alert. If you want to change the text, please change the alert also.
6868
tracing::warn!("Keeper balance {:?} is too low (< {:?}) but provider fees are not sufficient to top-up.", keeper_balance, min_balance)
6969
}
7070

0 commit comments

Comments
 (0)