From 66e9f87c0f2621c69f300d934f36c98584975e63 Mon Sep 17 00:00:00 2001 From: julian Date: Mon, 2 Jan 2023 16:43:04 -0600 Subject: [PATCH] increase xmr/wow autosave timer period --- lib/services/coins/monero/monero_wallet.dart | 2 +- lib/services/coins/wownero/wownero_wallet.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/services/coins/monero/monero_wallet.dart b/lib/services/coins/monero/monero_wallet.dart index f0869259b..96fb2ee7f 100644 --- a/lib/services/coins/monero/monero_wallet.dart +++ b/lib/services/coins/monero/monero_wallet.dart @@ -781,7 +781,7 @@ class MoneroWallet extends CoinServiceAPI { await refresh(); _autoSaveTimer?.cancel(); _autoSaveTimer = Timer.periodic( - const Duration(seconds: 93), + const Duration(seconds: 193), (_) async => await walletBase?.save(), ); } else { diff --git a/lib/services/coins/wownero/wownero_wallet.dart b/lib/services/coins/wownero/wownero_wallet.dart index d21ebab8c..1f9a3dd96 100644 --- a/lib/services/coins/wownero/wownero_wallet.dart +++ b/lib/services/coins/wownero/wownero_wallet.dart @@ -812,7 +812,7 @@ class WowneroWallet extends CoinServiceAPI { await refresh(); _autoSaveTimer?.cancel(); _autoSaveTimer = Timer.periodic( - const Duration(seconds: 93), + const Duration(seconds: 193), (_) async => await walletBase?.save(), ); } else {