Merge pull request #4344
cd647612
rpc: don't include start time if restricted (moneromooo-monero)
This commit is contained in:
commit
0ff0850545
|
@ -198,7 +198,7 @@ namespace cryptonote
|
|||
res.block_size_limit = res.block_weight_limit = m_core.get_blockchain_storage().get_current_cumulative_block_weight_limit();
|
||||
res.block_size_median = res.block_weight_median = m_core.get_blockchain_storage().get_current_cumulative_block_weight_median();
|
||||
res.status = CORE_RPC_STATUS_OK;
|
||||
res.start_time = (uint64_t)m_core.get_start_time();
|
||||
res.start_time = m_restricted ? 0 : (uint64_t)m_core.get_start_time();
|
||||
res.free_space = m_restricted ? std::numeric_limits<uint64_t>::max() : m_core.get_free_space();
|
||||
res.offline = m_core.offline();
|
||||
res.bootstrap_daemon_address = m_bootstrap_daemon_address;
|
||||
|
|
Loading…
Reference in New Issue