mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
chore: fix some typos (#2187)
Signed-off-by: tsinghuacoder <tsinghuacoder@icloud.com>
This commit is contained in:
parent
c0283a37ee
commit
46a2664b73
1 changed files with 2 additions and 2 deletions
|
@ -329,7 +329,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
||||||
try {
|
try {
|
||||||
await subscribeForUpdates();
|
await subscribeForUpdates();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
printV("failed to subcribe for updates: $e");
|
printV("failed to subscribe for updates: $e");
|
||||||
}
|
}
|
||||||
updateFeeRates();
|
updateFeeRates();
|
||||||
_feeRatesTimer?.cancel();
|
_feeRatesTimer?.cancel();
|
||||||
|
@ -601,7 +601,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
||||||
}
|
}
|
||||||
_utxoStream = responseStream.listen(
|
_utxoStream = responseStream.listen(
|
||||||
(Utxo sUtxo) async {
|
(Utxo sUtxo) async {
|
||||||
// we're processing utxos, so our balance could still be innacurate:
|
// we're processing utxos, so our balance could still be inaccurate:
|
||||||
if (mwebSyncStatus is! SyncronizingSyncStatus && mwebSyncStatus is! SyncingSyncStatus) {
|
if (mwebSyncStatus is! SyncronizingSyncStatus && mwebSyncStatus is! SyncingSyncStatus) {
|
||||||
mwebSyncStatus = SyncronizingSyncStatus();
|
mwebSyncStatus = SyncronizingSyncStatus();
|
||||||
processingUtxos = true;
|
processingUtxos = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue