mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-09 04:19:36 +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
|
@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();
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue