diff options
author | Michał Sałaban <michal@salaban.info> | 2017-12-27 01:35:48 +0100 |
---|---|---|
committer | Michał Sałaban <michal@salaban.info> | 2017-12-27 01:35:48 +0100 |
commit | 07da9c806d47428252b68bb57d72bdfd1963cab5 (patch) | |
tree | 2fbf5f20d09d8889e8b8bf5b76c971a6ba636d8d /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #2996 (diff) | |
download | monero-07da9c806d47428252b68bb57d72bdfd1963cab5.tar.xz |
Resolve addresses in get_transfers
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index 76c02039b..cfab97141 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -1106,6 +1106,7 @@ namespace wallet_rpc std::string type; uint64_t unlock_time; cryptonote::subaddress_index subaddr_index; + std::string address; bool double_spend_seen; BEGIN_KV_SERIALIZE_MAP() @@ -1120,6 +1121,7 @@ namespace wallet_rpc KV_SERIALIZE(type); KV_SERIALIZE(unlock_time) KV_SERIALIZE(subaddr_index); + KV_SERIALIZE(address); KV_SERIALIZE(double_spend_seen) END_KV_SERIALIZE_MAP() }; |