diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-04-06 00:05:10 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-04-06 00:05:10 -0400 |
commit | 7ece618baf82f864be5ee620c581072cd8047042 (patch) | |
tree | c4535d79c5f62cccf8629196af21062ee6cc5708 | |
parent | Merge pull request #8166 (diff) | |
parent | simplewallet: rename duplicate amount headers for clarity (diff) | |
download | monero-7ece618baf82f864be5ee620c581072cd8047042.tar.xz |
Merge pull request #8177
30ab49d simplewallet: rename duplicate amount headers for clarity (reemuru)
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 2258daa62..c4ec257c6 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -8761,7 +8761,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; |