diff options
author | Brendan Telzrow <telzrowb@gmail.com> | 2015-12-23 13:10:59 -0600 |
---|---|---|
committer | Brendan Telzrow <telzrowb@gmail.com> | 2015-12-23 13:10:59 -0600 |
commit | 791e7fb2638c9e9e2e844e702bc690963bae720c (patch) | |
tree | 83d7c5a7639a9135d742546082de36dae6a96755 /src/wallet | |
parent | added RPC wallet command getheight (diff) | |
download | monero-791e7fb2638c9e9e2e844e702bc690963bae720c.tar.xz |
changed height to uint64_t
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index 678e2d2ca..a20c8b969 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -88,10 +88,10 @@ namespace wallet_rpc struct response { - std::string height; - BEGIN_KV_SERIALIZE_MAP() - KV_SERIALIZE(height) - END_KV_SERIALIZE_MAP() + uint64_t height; + BEGIN_KV_SERIALIZE_MAP() + KV_SERIALIZE(height) + END_KV_SERIALIZE_MAP() }; }; |