wallet2_api: allow connection to return "yes, but wrong version"

This commit is contained in:
moneromooo-monero 2016-11-07 12:00:29 +00:00
parent 1372f255af
commit 63fe6fd9ba
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 16 additions and 4 deletions

View file

@ -720,9 +720,15 @@ bool WalletImpl::connectToDaemon()
return result;
}
bool WalletImpl::connected() const
Wallet::ConnectionStatus WalletImpl::connected() const
{
return m_wallet->check_connection();
bool same_version = false;
bool is_connected = m_wallet->check_connection(&same_version);
if (!is_connected)
return Wallet::ConnectionStatus_Disconnected;
if (!same_version)
return Wallet::ConnectionStatus_WrongVersion;
return Wallet::ConnectionStatus_Connected;
}
void WalletImpl::setTrustedDaemon(bool arg)