mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +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(
|
return PendingZanoTransaction(
|
||||||
zanoWallet: this,
|
zanoWallet: this,
|
||||||
destinations: destinations,
|
destinations: destinations,
|
||||||
|
@ -416,7 +419,6 @@ abstract class ZanoWalletBase extends WalletBase<ZanoBalance, ZanoTransactionHis
|
||||||
// _listener = zano_wallet.setListeners(_onNewBlock, _onNewTransaction);
|
// _listener = zano_wallet.setListeners(_onNewBlock, _onNewTransaction);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
void _askForUpdateBalance() {
|
void _askForUpdateBalance() {
|
||||||
debugPrint('askForUpdateBalance'); // TODO: remove, also remove this method completely
|
debugPrint('askForUpdateBalance'); // TODO: remove, also remove this method completely
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue