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.
This commit is contained in:
moneromooo-monero 2015-11-29 13:20:54 +00:00
parent 4061a32082
commit 66849ac236
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -2122,7 +2122,7 @@ bool simple_wallet::show_transfers(const std::vector<std::string> &args_)
// print in and out sorted by height
for (std::map<uint64_t, std::pair<bool, std::string>>::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;
}