This commit is contained in:
Matthew Fosse 2024-12-26 17:01:22 -05:00
parent 08aed18f19
commit 7b786c2036
2 changed files with 2 additions and 2 deletions

View file

@ -491,7 +491,7 @@ abstract class ElectrumWalletBase
@action @action
@override @override
Future<void> stopSync() async { Future<void> stopSync({bool isBackgroundSync = false}) async {
syncStatus = NotConnectedSyncStatus(); syncStatus = NotConnectedSyncStatus();
try { try {
await _receiveStream?.cancel(); await _receiveStream?.cancel();

View file

@ -302,7 +302,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
@action @action
@override @override
Future<void> startSync() async { Future<void> startSync({bool isBackgroundSync = false}) async {
printV("startSync() called!"); printV("startSync() called!");
printV("STARTING SYNC - MWEB ENABLED: $mwebEnabled"); printV("STARTING SYNC - MWEB ENABLED: $mwebEnabled");
if (!mwebEnabled) { if (!mwebEnabled) {