simplewallet: do not call a RPC when displaying the prompt

Speeds up refresh when you have a lot of in/out transactions
This commit is contained in:
moneromooo-monero 2018-03-11 01:15:53 +00:00
parent e9f41e405f
commit b63ea060de
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

View File

@ -5862,8 +5862,7 @@ std::string simple_wallet::get_prompt() const
{ {
std::string addr_start = m_wallet->get_subaddress_as_str({m_current_subaddress_account, 0}).substr(0, 6); std::string addr_start = m_wallet->get_subaddress_as_str({m_current_subaddress_account, 0}).substr(0, 6);
std::string prompt = std::string("[") + tr("wallet") + " " + addr_start; std::string prompt = std::string("[") + tr("wallet") + " " + addr_start;
uint32_t version; if (!m_wallet->check_connection(NULL))
if (!m_wallet->check_connection(&version))
prompt += tr(" (no daemon)"); prompt += tr(" (no daemon)");
else if (!m_wallet->is_synced()) else if (!m_wallet->is_synced())
prompt += tr(" (out of sync)"); prompt += tr(" (out of sync)");