This commit is contained in:
leo1234 2024-03-08 20:42:09 +08:00
parent 43e9cd284a
commit 9228d91daa

View file

@ -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,9 +419,8 @@ 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
} }
Future<void> _askForUpdateTransactionHistory() async => await updateTransactions(); Future<void> _askForUpdateTransactionHistory() async => await updateTransactions();