mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
minor fix
This commit is contained in:
parent
b787810f6a
commit
142688f9b6
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue