Merge pull request #3384

b63ea060 simplewallet: do not call a RPC when displaying the prompt (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-03-14 16:08:14 +02:00
commit 534369eece
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -5878,8 +5878,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 prompt = std::string("[") + tr("wallet") + " " + addr_start;
uint32_t version;
if (!m_wallet->check_connection(&version))
if (!m_wallet->check_connection(NULL))
prompt += tr(" (no daemon)");
else if (!m_wallet->is_synced())
prompt += tr(" (out of sync)");