diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-07-22 20:54:45 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-07-22 20:54:45 -0400 |
commit | ad4061002cfbd6fa3bdffcd526f61242858866b4 (patch) | |
tree | f75752e02edca8651459e4df1d985eeba57a2d8a /src/rpc | |
parent | Merge pull request #67 from mikezackles/get_info (diff) | |
download | monero-ad4061002cfbd6fa3bdffcd526f61242858866b4.tar.xz |
Missed serializing a get_connections RPC response parameter
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server_commands_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server_commands_defs.h b/src/rpc/core_rpc_server_commands_defs.h index 39acadb04..bd8aff706 100644 --- a/src/rpc/core_rpc_server_commands_defs.h +++ b/src/rpc/core_rpc_server_commands_defs.h @@ -495,6 +495,7 @@ namespace cryptonote std::list<connection_info> connections; BEGIN_KV_SERIALIZE_MAP() + KV_SERIALIZE(status) KV_SERIALIZE(connections) END_KV_SERIALIZE_MAP() }; |