From 31ef66ce77833f690fcc7a33a9c5e162f701f046 Mon Sep 17 00:00:00 2001 From: reemuru Date: Thu, 10 Feb 2022 21:17:13 -0500 Subject: [PATCH] simplewallet: rename duplicate amount headers for clarity There are duplicate headers for 'amount' when performing export_transfers all. Column five represents the total amount of the transaction while column eleven represents the amount transferred per destination (e.g. multi-destination transactions). The columns have been renamed to 'transaction amount' and 'destination amount` respectively. --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 9796be278..123e4bf45 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -8679,7 +8679,7 @@ bool simple_wallet::export_transfers(const std::vector& args_) // header file << boost::format("%8.8s,%9.9s,%8.8s,%25.25s,%20.20s,%20.20s,%64.64s,%16.16s,%14.14s,%106.106s,%20.20s,%s,%s") % - tr("block") % tr("direction") % tr("unlocked") % tr("timestamp") % tr("amount") % tr("running balance") % tr("hash") % tr("payment ID") % tr("fee") % tr("destination") % tr("amount") % tr("index") % tr("note") + tr("block") % tr("direction") % tr("unlocked") % tr("timestamp") % tr("transaction amount") % tr("running balance") % tr("hash") % tr("payment ID") % tr("fee") % tr("destination") % tr("destination amount") % tr("index") % tr("note") << std::endl; uint64_t running_balance = 0;