mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
handle csv export with mempool txes
This commit is contained in:
parent
e45fdc72a0
commit
4dd52eb9dd
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public class TransactionsController extends WalletFormController implements Init
|
||||||
writer.writeRecord(new String[] {"Date", "Label", "Value", "Balance"});
|
writer.writeRecord(new String[] {"Date", "Label", "Value", "Balance"});
|
||||||
for(Entry entry : walletTransactionsEntry.getChildren()) {
|
for(Entry entry : walletTransactionsEntry.getChildren()) {
|
||||||
TransactionEntry txEntry = (TransactionEntry)entry;
|
TransactionEntry txEntry = (TransactionEntry)entry;
|
||||||
writer.write(EntryCell.DATE_FORMAT.format(txEntry.getBlockTransaction().getDate()));
|
writer.write(txEntry.getBlockTransaction().getDate() == null ? "Unconfirmed" : EntryCell.DATE_FORMAT.format(txEntry.getBlockTransaction().getDate()));
|
||||||
writer.write(txEntry.getLabel());
|
writer.write(txEntry.getLabel());
|
||||||
writer.write(getCoinValue(txEntry.getValue()));
|
writer.write(getCoinValue(txEntry.getValue()));
|
||||||
writer.write(getCoinValue(txEntry.getBalance()));
|
writer.write(getCoinValue(txEntry.getBalance()));
|
||||||
|
|
Loading…
Reference in a new issue