diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:54:25 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:54:25 +0200 |
commit | 0ff0850545db99085e42cea744b5e219dbe6872a (patch) | |
tree | bafdef7b72711ce32ad053f7ad31cdd4049f2771 /src/rpc | |
parent | Merge pull request #4341 (diff) | |
parent | rpc: don't include start time if restricted (diff) | |
download | monero-0ff0850545db99085e42cea744b5e219dbe6872a.tar.xz |
Merge pull request #4344
cd647612 rpc: don't include start time if restricted (moneromooo-monero)
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index db7f2dbaa..b74032a33 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -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; |