chore: fix some typos (#2187)

Signed-off-by: tsinghuacoder <tsinghuacoder@icloud.com>

tsinghuacoder committed Apr 11, 2025 at 20:37 UTC 46a2664b73923aae9ebefa3d4e2c6bd98eae7fa7
1 file changed +2 -2
cw_bitcoin/lib/litecoin_wallet.dart
+2 -2
@@ -329,7 +329,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
329 try {
330 await subscribeForUpdates();
331 } catch (e) {
332 - printV("failed to subcribe for updates: $e");
332 + printV("failed to subscribe for updates: $e");
333 }
334 updateFeeRates();
335 _feeRatesTimer?.cancel();
@@ -601,7 +601,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
601 }
602 _utxoStream = responseStream.listen(
603 (Utxo sUtxo) async {
604 - // we're processing utxos, so our balance could still be innacurate:
604 + // we're processing utxos, so our balance could still be inaccurate:
605 if (mwebSyncStatus is! SyncronizingSyncStatus && mwebSyncStatus is! SyncingSyncStatus) {
606 mwebSyncStatus = SyncronizingSyncStatus();
607 processingUtxos = true;