mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
increase xmr/wow autosave timer period
This commit is contained in:
parent
f3b1d11a46
commit
95f5b41b4d
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue