diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-09-04 13:12:48 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-09-04 13:12:48 -0500 |
commit | 085b6ba98ed931250cc983ffc2b5b91d99394173 (patch) | |
tree | 1fbe0e4c522fc0ee5e8318e158118bafbadf3dc4 | |
parent | Merge pull request #4262 (diff) | |
parent | wallet_rpc_server: remove unused amount_keys field in transfer RPC (diff) | |
download | monero-085b6ba98ed931250cc983ffc2b5b91d99394173.tar.xz |
Merge pull request #4263
5ed6669 wallet_rpc_server: remove unused amount_keys field in transfer RPC (moneromooo-monero)
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index 3f946eaed..a8bb65568 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -445,7 +445,6 @@ namespace wallet_rpc { std::string tx_hash; std::string tx_key; - std::list<std::string> amount_keys; uint64_t amount; uint64_t fee; std::string tx_blob; @@ -456,7 +455,6 @@ namespace wallet_rpc BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_hash) KV_SERIALIZE(tx_key) - KV_SERIALIZE(amount_keys) KV_SERIALIZE(amount) KV_SERIALIZE(fee) KV_SERIALIZE(tx_blob) |