Merge pull request #7161

07b50c42d rpc: get_info - add 'synchronized' field (xiphon)
This commit is contained in:
Alexander Blair 2020-12-26 13:58:19 -08:00
commit 355be543c7
No known key found for this signature in database
GPG key ID: C64552D877C32479
2 changed files with 3 additions and 0 deletions

View file

@ -499,6 +499,7 @@ namespace cryptonote
res.update_available = restricted ? false : m_core.is_update_available();
res.version = restricted ? "" : MONERO_VERSION_FULL;
res.busy_syncing = m_p2p.get_payload_object().is_busy_syncing();
res.synchronized = check_core_ready();
res.status = CORE_RPC_STATUS_OK;
return true;

View file

@ -686,6 +686,7 @@ namespace cryptonote
bool update_available;
bool busy_syncing;
std::string version;
bool synchronized;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE_PARENT(rpc_access_response_base)
@ -726,6 +727,7 @@ namespace cryptonote
KV_SERIALIZE(update_available)
KV_SERIALIZE(busy_syncing)
KV_SERIALIZE(version)
KV_SERIALIZE(synchronized)
END_KV_SERIALIZE_MAP()
};
typedef epee::misc_utils::struct_init<response_t> response;