From 791e7fb2638c9e9e2e844e702bc690963bae720c Mon Sep 17 00:00:00 2001 From: Brendan Telzrow Date: Wed, 23 Dec 2015 13:10:59 -0600 Subject: [PATCH] changed height to uint64_t --- src/wallet/wallet_rpc_server_commands_defs.h | 8 ++++---- 1 file 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 678e2d2c..a20c8b96 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() }; };