[skip ci] minor enhancements

This commit is contained in:
Matthew Fosse 2024-07-17 09:41:26 -07:00
parent 92669a6539
commit 7c5cd1959c

View file

@ -690,4 +690,11 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
Future<void> save() async { Future<void> save() async {
await super.save(); await super.save();
} }
@override
Future<void> close() async {
await super.close();
await mwebUtxosBox.close();
_syncTimer?.cancel();
}
} }