aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server_commands_defs.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-01-25 16:32:40 -0800
committerRiccardo Spagni <ric@spagni.net>2018-01-25 16:32:40 -0800
commitf077bbb4f177bdd4244322e2486eb8d610b57b02 (patch)
tree73c764471b64fac9f4cd34f2544fe534e3ae30cb /src/wallet/wallet_rpc_server_commands_defs.h
parentMerge pull request #3009 (diff)
parentResolve addresses in get_transfers (diff)
downloadmonero-f077bbb4f177bdd4244322e2486eb8d610b57b02.tar.xz
Merge pull request #3010
07da9c80 Resolve addresses in get_transfers (Michał Sałaban)
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r--src/wallet/wallet_rpc_server_commands_defs.h2
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 d797af5c1..4abbb8386 100644
--- a/src/wallet/wallet_rpc_server_commands_defs.h
+++ b/src/wallet/wallet_rpc_server_commands_defs.h
@@ -1114,6 +1114,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()
@@ -1128,6 +1129,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()
};