aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorreemuru <rimuru@hiahatf.org>2022-02-10 21:17:13 -0500
committerreemuru <rimuru@hiahatf.org>2022-02-11 09:57:49 -0500
commit30ab49d5cb5f7d5b089d20919cf4f02b063f2e6b (patch)
tree30326533ac6c4713a1af1413c7f07dcee8719204
parentMerge pull request #8096 (diff)
downloadmonero-30ab49d5cb5f7d5b089d20919cf4f02b063f2e6b.tar.xz
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.
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index a18152e68..805886bc8 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -8818,7 +8818,7 @@ bool simple_wallet::export_transfers(const std::vector<std::string>& 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;