Merge pull request #128

689f041 Report when the GUI is connected to a daemon with mismatched version (moneromooo.monero)
This commit is contained in:
Riccardo Spagni
2016-11-09 20:48:53 +02:00
5 changed files with 49 additions and 13 deletions

View File

@@ -86,9 +86,9 @@ Wallet::Status Wallet::status() const
return static_cast<Status>(m_walletImpl->status());
}
bool Wallet::connected() const
Wallet::ConnectionStatus Wallet::connected() const
{
return m_walletImpl->connected();
return static_cast<ConnectionStatus>(m_walletImpl->connected());
}
bool Wallet::synchronized() const