diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-10 15:54:59 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-10 15:55:35 +0000 |
commit | 67e76aa06c3db2a82f98fa6a74fff5feb4f4199d (patch) | |
tree | 928ff44c864172c7640d62cb55c8636289db3484 /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #4540 (diff) | |
download | monero-67e76aa06c3db2a82f98fa6a74fff5feb4f4199d.tar.xz |
wallet_rpc_server: optionally return tx keys in sign_transfer
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index 2377b69e3..3884905ab 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -537,10 +537,12 @@ namespace wallet_rpc { std::string unsigned_txset; bool export_raw; + bool get_tx_keys; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(unsigned_txset) KV_SERIALIZE_OPT(export_raw, false) + KV_SERIALIZE_OPT(get_tx_keys, false) END_KV_SERIALIZE_MAP() }; @@ -549,11 +551,13 @@ namespace wallet_rpc std::string signed_txset; std::list<std::string> tx_hash_list; std::list<std::string> tx_raw_list; + std::list<std::string> tx_key_list; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(signed_txset) KV_SERIALIZE(tx_hash_list) KV_SERIALIZE(tx_raw_list) + KV_SERIALIZE(tx_key_list) END_KV_SERIALIZE_MAP() }; }; |