From 833f9fcfe959cdadb33fae2aa4af0fe5d6f847f6 Mon Sep 17 00:00:00 2001 From: cryptochangements34 Date: Thu, 15 Mar 2018 23:22:45 -0400 Subject: [PATCH] show '' for empty wallet description --- src/simplewallet/simplewallet.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index cbb174e1a..0a2cc22b4 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -6449,9 +6449,13 @@ bool simple_wallet::wallet_info(const std::vector &args) { bool ready; uint32_t threshold, total; - + std::string description = m_wallet->get_description(); + if (description.empty()) + { + description = ""; + } message_writer() << tr("Filename: ") << m_wallet->get_wallet_file(); - message_writer() << tr("Description: ") << m_wallet->get_description(); + message_writer() << tr("Description: ") << description; message_writer() << tr("Address: ") << m_wallet->get_account().get_public_address_str(m_wallet->nettype()); std::string type; if (m_wallet->watch_only())