From 142688f9b68221aff270f11a5011dc01b6ebe483 Mon Sep 17 00:00:00 2001 From: Serhii Date: Wed, 8 May 2024 17:52:22 +0300 Subject: [PATCH] minor fix --- lib/reactions/on_wallet_sync_status_change.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reactions/on_wallet_sync_status_change.dart b/lib/reactions/on_wallet_sync_status_change.dart index 9ab65bfa3..5d2499b17 100644 --- a/lib/reactions/on_wallet_sync_status_change.dart +++ b/lib/reactions/on_wallet_sync_status_change.dart @@ -44,7 +44,7 @@ void startWalletSyncStatusChangeReaction( (settingsStore.fiatApiMode != FiatApiMode.disabled || settingsStore.showHistoricalFiatAmount)) { _debounceTimer?.cancel(); - _debounceTimer = Timer(Duration(milliseconds: 200), () async { + _debounceTimer = Timer(Duration(milliseconds: 100), () async { await historicalRateUpdate( wallet, settingsStore, fiatConversionStore, transactionDescription); });