mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 03:29:36 +00:00
chore: prints
This commit is contained in:
parent
321bc1e18e
commit
a07be3d863
3 changed files with 2 additions and 6 deletions
|
@ -1476,8 +1476,7 @@ abstract class BitcoinWalletBase extends ElectrumWallet with Store {
|
|||
|
||||
await updateBalance();
|
||||
});
|
||||
} catch (e, s) {
|
||||
print([e, s]);
|
||||
} catch (e) {
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -926,8 +926,7 @@ abstract class ElectrumWalletBase
|
|||
await updateBalance();
|
||||
await updateAllUnspents();
|
||||
});
|
||||
} catch (e, s) {
|
||||
print([e, s]);
|
||||
} catch (e) {
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -662,12 +662,10 @@ class ElectrumWorker {
|
|||
}
|
||||
});
|
||||
|
||||
print("ADDTO WALLET: $addToWallet");
|
||||
if (addToWallet.isEmpty) {
|
||||
// no results tx, continue to next tx
|
||||
continue;
|
||||
}
|
||||
print(scanData.labels);
|
||||
|
||||
// placeholder ElectrumTransactionInfo object to update values based on new scanned unspent(s)
|
||||
final txInfo = ElectrumTransactionInfo(
|
||||
|
|
Loading…
Reference in a new issue