Skip to content

Commit

Permalink
Merge pull request #9592
Browse files Browse the repository at this point in the history
e126b4b simplewallet: add header to show_transfers command (0xFFFC0000)
  • Loading branch information
luigi1111 committed Dec 23, 2024
2 parents aa13699 + e126b4b commit db643f7
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/simplewallet/simplewallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8688,6 +8688,22 @@ bool simple_wallet::show_transfers(const std::vector<std::string> &args_)

PAUSE_READLINE();

auto formatter = boost::format("%8.8s %6.6s %8.8s %25.25s %20.20s %64.64s %15.15s %14.14s %s %s - %s");
message_writer(console_color_default, false) << formatter
% "Block"
% "In/Out"
% "Locked?"
% "Timestamp"
% "Amount"
% "Tx Hash"
% "Tx Payment ID"
% "Tx Fee"
% "Destination(s)"
% "Index"
% "Tx Note";

formatter = boost::format("%8.8llu %6.6s %8.8s %25.25s %20.20s %64.64s %15.15s %14.14s %s %s - %s");

for (const auto& transfer : all_transfers)
{
const auto color = transfer.type == "failed" ? console_color_red : transfer.confirmed ? ((transfer.direction == "in" || transfer.direction == "block") ? console_color_green : console_color_magenta) : console_color_default;
Expand All @@ -8704,8 +8720,6 @@ bool simple_wallet::show_transfers(const std::vector<std::string> &args_)
}
}

auto formatter = boost::format("%8.8llu %6.6s %8.8s %25.25s %20.20s %s %s %14.14s %s %s - %s");

message_writer(color, false) << formatter
% transfer.block
% transfer.direction
Expand Down

0 comments on commit db643f7

Please sign in to comment.