diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-03-18 16:30:00 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-03-18 16:30:00 -0500 |
commit | 0ea851989529b054cadcb0be9a32108f1ab88bf5 (patch) | |
tree | b15d78a84515cc1200c2d5fd73d9db51ea972ae8 /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #8158 (diff) | |
parent | rpc: add explicit restricted flag to /get_info (diff) | |
download | monero-0ea851989529b054cadcb0be9a32108f1ab88bf5.tar.xz |
Merge pull request #8169
5e201fe rpc: add explicit restricted flag to /get_info (tobtoht)
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index e114ea7c6..dbbdfc02a 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -534,6 +534,7 @@ namespace cryptonote res.version = restricted ? "" : MONERO_VERSION_FULL; res.synchronized = check_core_ready(); res.busy_syncing = m_p2p.get_payload_object().is_busy_syncing(); + res.restricted = restricted; res.status = CORE_RPC_STATUS_OK; return true; |