From 66849ac23696a0ad2795f25cfeb8b8b190227bbf Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 29 Nov 2015 13:20:54 +0000 Subject: [PATCH] simplewallet: swap colors in show_transfers Green is now used for incoming transfers, and magenta for outgoing transfers. This is consistent to the scheme used by other logging. --- 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 2d99b3da..b1755ed6 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2122,7 +2122,7 @@ bool simple_wallet::show_transfers(const std::vector &args_) // print in and out sorted by height for (std::map>::const_iterator i = output.begin(); i != output.end(); ++i) { - message_writer(i->second.first ? epee::log_space::console_color_magenta : epee::log_space::console_color_green, false) << + message_writer(i->second.first ? epee::log_space::console_color_green : epee::log_space::console_color_magenta, false) << boost::format("%8.8llu %6.6s %s") % ((unsigned long long)i->first) % (i->second.first ? tr("in") : tr("out")) % i->second.second; }