Skip to content

Commit eddaa00

Browse files
authored
feat(gui): refresh rates every minute (#817)
1 parent ce46499 commit eddaa00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src-gui/src/renderer/background.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ const DISCOVER_PEERS_INTERVAL = 5 * 60 * 1_000;
5050
// Update node statuses every 2 minutes
5151
const STATUS_UPDATE_INTERVAL = 2 * 60 * 1_000;
5252

53-
// Update the exchange rate every 5 minutes
54-
const UPDATE_RATE_INTERVAL = 5 * 60 * 1_000;
53+
// Update the exchange rate every 1 minute
54+
const UPDATE_RATE_INTERVAL = 1 * 60 * 1_000;
5555

5656
// Fetch all conversations every 10 minutes
5757
const FETCH_CONVERSATIONS_INTERVAL = 10 * 60 * 1_000;

0 commit comments

Comments
 (0)