diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-29 12:18:22 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-29 12:18:22 +0100 |
commit | adca9035899532902b78b20a593a6c70018b7004 (patch) | |
tree | 1d9c4d48d72c4b2b7153708ac7e64d4fca9b03f5 /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #1002 (diff) | |
download | monero-adca9035899532902b78b20a593a6c70018b7004.tar.xz |
wallet_rpc_server: return payment id in make_integrated_address RPC
It is useful, especially when requesting a random one
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 27b897dab..6439a19fe 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -414,9 +414,11 @@ namespace wallet_rpc struct response { std::string integrated_address; + std::string payment_id; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(integrated_address) + KV_SERIALIZE(payment_id) END_KV_SERIALIZE_MAP() }; }; |