Merge pull request #3804

89e51ec simple-wallet-cli: Add warnings about inaccurate balances to to watch-only wallet (jcktm)
This commit is contained in:
luigi1111 2018-06-16 14:15:52 -05:00
commit 9226acca4b
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
3 changed files with 11 additions and 0 deletions

View file

@ -4063,6 +4063,8 @@ bool simple_wallet::show_balance_unlocked(bool detailed)
std::string extra;
if (m_wallet->has_multisig_partial_key_images())
extra = tr(" (Some owned outputs have partial key images - import_multisig_info needed)");
else if (m_wallet->has_unknown_key_images())
extra += tr(" (Some owned outputs have missing key images - import_key_images needed)");
success_msg_writer() << tr("Currently selected account: [") << m_current_subaddress_account << tr("] ") << m_wallet->get_subaddress_label({m_current_subaddress_account, 0});
const std::string tag = m_wallet->get_account_tags().second[m_current_subaddress_account];
success_msg_writer() << tr("Tag: ") << (tag.empty() ? std::string{tr("(No tag assigned)")} : tag);