daemon_ipc_handers: fix check_core_ready returning ready when not ready

This commit is contained in:
moneromooo-monero 2015-10-31 10:48:55 +00:00
parent ead65ba824
commit d7a0de604b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

View File

@ -74,7 +74,7 @@ namespace
*/
bool check_core_ready()
{
if (p2p->get_payload_object().is_synchronized())
if (!p2p->get_payload_object().is_synchronized())
{
return false;
}