mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
logging
This commit is contained in:
parent
43e9cd284a
commit
9228d91daa
1 changed files with 4 additions and 2 deletions
|
@ -254,6 +254,9 @@ abstract class ZanoWalletBase extends WalletBase<ZanoBalance, ZanoTransactionHis
|
|||
)
|
||||
];
|
||||
}
|
||||
destinations.forEach((destination) {
|
||||
debugPrint('destination ${destination.address} ${destination.amount} ${destination.assetId}');
|
||||
});
|
||||
return PendingZanoTransaction(
|
||||
zanoWallet: this,
|
||||
destinations: destinations,
|
||||
|
@ -416,9 +419,8 @@ abstract class ZanoWalletBase extends WalletBase<ZanoBalance, ZanoTransactionHis
|
|||
// _listener = zano_wallet.setListeners(_onNewBlock, _onNewTransaction);
|
||||
// }
|
||||
|
||||
|
||||
void _askForUpdateBalance() {
|
||||
debugPrint('askForUpdateBalance'); // TODO: remove, also remove this method completely
|
||||
debugPrint('askForUpdateBalance'); // TODO: remove, also remove this method completely
|
||||
}
|
||||
|
||||
Future<void> _askForUpdateTransactionHistory() async => await updateTransactions();
|
||||
|
|
Loading…
Reference in a new issue