diff options
author | im <im@debian> | 2021-11-10 02:27:14 +0800 |
---|---|---|
committer | im <im@debian> | 2021-11-10 02:27:14 +0800 |
commit | cf44349a86a608587ad5227bd2736b7e121fabc5 (patch) | |
tree | f7f47cc20662f4ec8c53fd252f7f1a77851503c1 /src/simplewallet | |
parent | Merge pull request #8021 (diff) | |
download | monero-cf44349a86a608587ad5227bd2736b7e121fabc5.tar.xz |
account info text alignment
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index fd784c5ae..caa0cd9ac 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -9591,8 +9591,8 @@ void simple_wallet::print_accounts(const std::string& tag) total_balance += m_wallet->balance(account_index, false); total_unlocked_balance += m_wallet->unlocked_balance(account_index, false); } - success_msg_writer() << tr("----------------------------------------------------------------------------------"); - success_msg_writer() << boost::format(tr("%15s %21s %21s")) % "Total" % print_money(total_balance) % print_money(total_unlocked_balance); + success_msg_writer() << tr("------------------------------------------------------------------------------------"); + success_msg_writer() << boost::format(tr("%15s %21s %21s")) % "Total" % print_money(total_balance) % print_money(total_unlocked_balance); } //---------------------------------------------------------------------------------------------------- bool simple_wallet::print_address(const std::vector<std::string> &args/* = std::vector<std::string>()*/) |