mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +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();
|
await updateBalance();
|
||||||
});
|
});
|
||||||
} catch (e, s) {
|
} catch (e) {
|
||||||
print([e, s]);
|
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -926,8 +926,7 @@ abstract class ElectrumWalletBase
|
||||||
await updateBalance();
|
await updateBalance();
|
||||||
await updateAllUnspents();
|
await updateAllUnspents();
|
||||||
});
|
});
|
||||||
} catch (e, s) {
|
} catch (e) {
|
||||||
print([e, s]);
|
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -662,12 +662,10 @@ class ElectrumWorker {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
print("ADDTO WALLET: $addToWallet");
|
|
||||||
if (addToWallet.isEmpty) {
|
if (addToWallet.isEmpty) {
|
||||||
// no results tx, continue to next tx
|
// no results tx, continue to next tx
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
print(scanData.labels);
|
|
||||||
|
|
||||||
// placeholder ElectrumTransactionInfo object to update values based on new scanned unspent(s)
|
// placeholder ElectrumTransactionInfo object to update values based on new scanned unspent(s)
|
||||||
final txInfo = ElectrumTransactionInfo(
|
final txInfo = ElectrumTransactionInfo(
|
||||||
|
|
Loading…
Reference in a new issue