mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-07 16:57:26 -04:00
Report when the GUI is connected to a daemon with mismatched version
This will cause various errors confusing to the user, as they stem for the daemon returning replies with missing information, etc.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user