mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-07 03:19:31 +00:00
minor
This commit is contained in:
parent
08aed18f19
commit
7b786c2036
2 changed files with 2 additions and 2 deletions
|
@ -491,7 +491,7 @@ abstract class ElectrumWalletBase
|
|||
|
||||
@action
|
||||
@override
|
||||
Future<void> stopSync() async {
|
||||
Future<void> stopSync({bool isBackgroundSync = false}) async {
|
||||
syncStatus = NotConnectedSyncStatus();
|
||||
try {
|
||||
await _receiveStream?.cancel();
|
||||
|
|
|
@ -302,7 +302,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|||
|
||||
@action
|
||||
@override
|
||||
Future<void> startSync() async {
|
||||
Future<void> startSync({bool isBackgroundSync = false}) async {
|
||||
printV("startSync() called!");
|
||||
printV("STARTING SYNC - MWEB ENABLED: $mwebEnabled");
|
||||
if (!mwebEnabled) {
|
||||
|
|
Loading…
Reference in a new issue