aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server_commands_defs.h
diff options
context:
space:
mode:
authorstoffu <stoffu@protonmail.ch>2018-07-20 21:33:36 +0900
committerstoffu <stoffu@protonmail.ch>2018-07-20 21:33:36 +0900
commit7db7ec8591a3f1e870e158a0b1cf71765e8a835a (patch)
treeb72e297889de5adb1bb4bd174b8c1afa04b7548c /src/wallet/wallet_rpc_server_commands_defs.h
parentMerge pull request #4088 (diff)
downloadmonero-7db7ec8591a3f1e870e158a0b1cf71765e8a835a.tar.xz
wallet rpc: support making integrated address of given standard address
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 1bd572add..026c5d8ad 100644
--- a/src/wallet/wallet_rpc_server_commands_defs.h
+++ b/src/wallet/wallet_rpc_server_commands_defs.h
@@ -914,9 +914,11 @@ namespace wallet_rpc
{
struct request
{
+ std::string standard_address;
std::string payment_id;
BEGIN_KV_SERIALIZE_MAP()
+ KV_SERIALIZE(standard_address)
KV_SERIALIZE(payment_id)
END_KV_SERIALIZE_MAP()
};