Skip to content

Commit

Permalink
Merge pull request fedimint#6180 from dpc/24-10-17-deposit-monitor-mo…
Browse files Browse the repository at this point in the history
…re-often

chore(client): check peg-in addresses with no deposits more often
  • Loading branch information
dpc authored Oct 21, 2024
2 parents eec0500 + f84c65f commit 437a887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/fedimint-wallet-client/src/pegin_monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ impl CheckOutcome {
}
let now = time::now();
let age = now.duration_since(creation_time).unwrap_or_default();
return Some(age / 2);
return Some(age / 10);
}

// The delays is the minimum retry delay.
Expand Down

0 comments on commit 437a887

Please sign in to comment.