diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 92ad65c5..f1c3faa3 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -263,6 +263,7 @@ namespace tools { res.tx_key = epee::string_tools::pod_to_hex(ptx_vector.back().tx_key); } + res.fee = ptx_vector.back().fee; return true; } catch (const tools::error::daemon_busy& e) @@ -325,6 +326,7 @@ namespace tools { res.tx_key_list.push_back(epee::string_tools::pod_to_hex(ptx.tx_key)); } + res.fee_list.push_back(ptx.fee); } return true; @@ -373,6 +375,7 @@ namespace tools { res.tx_key_list.push_back(epee::string_tools::pod_to_hex(ptx.tx_key)); } + res.fee_list.push_back(ptx.fee); } return true; @@ -434,6 +437,7 @@ namespace tools { res.tx_key_list.push_back(epee::string_tools::pod_to_hex(ptx.tx_key)); } + res.fee_list.push_back(ptx.fee); } return true; diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index cde9863a..76de7bc9 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -133,11 +133,13 @@ namespace wallet_rpc std::string tx_hash; std::string tx_key; std::list amount_keys; + uint64_t fee; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_hash) KV_SERIALIZE(tx_key) KV_SERIALIZE(amount_keys) + KV_SERIALIZE(fee) END_KV_SERIALIZE_MAP() }; }; @@ -178,10 +180,12 @@ namespace wallet_rpc { std::list tx_hash_list; std::list tx_key_list; + std::list fee_list; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_hash_list) KV_SERIALIZE(tx_key_list) + KV_SERIALIZE(fee_list) END_KV_SERIALIZE_MAP() }; }; @@ -212,10 +216,12 @@ namespace wallet_rpc { std::list tx_hash_list; std::list tx_key_list; + std::list fee_list; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_hash_list) KV_SERIALIZE(tx_key_list) + KV_SERIALIZE(fee_list) END_KV_SERIALIZE_MAP() }; }; @@ -256,10 +262,12 @@ namespace wallet_rpc { std::list tx_hash_list; std::list tx_key_list; + std::list fee_list; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_hash_list) KV_SERIALIZE(tx_key_list) + KV_SERIALIZE(fee_list) END_KV_SERIALIZE_MAP() }; };