diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-02-19 22:22:36 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-02-19 22:22:36 -0500 |
commit | 22a03673982fae857b4f2eb6a775021e3a624a56 (patch) | |
tree | 398eff1ede23de9f6575aedbc633c06c839e53ec /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #6188 (diff) | |
parent | Wallet: Distingush amounts for a single subaddress (diff) | |
download | monero-22a03673982fae857b4f2eb6a775021e3a624a56.tar.xz |
Merge pull request #6190
096a9db Wallet: Distingush amounts for a single subaddress (tmoravec)
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index d6735e117..614e7af08 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -1370,6 +1370,7 @@ namespace wallet_rpc typedef epee::misc_utils::struct_init<response_t> response; }; + typedef std::vector<uint64_t> amounts_container; struct transfer_entry { std::string txid; @@ -1377,6 +1378,7 @@ namespace wallet_rpc uint64_t height; uint64_t timestamp; uint64_t amount; + amounts_container amounts; uint64_t fee; std::string note; std::list<transfer_destination> destinations; @@ -1396,6 +1398,7 @@ namespace wallet_rpc KV_SERIALIZE(height); KV_SERIALIZE(timestamp); KV_SERIALIZE(amount); + KV_SERIALIZE(amounts); KV_SERIALIZE(fee); KV_SERIALIZE(note); KV_SERIALIZE(destinations); |