Skip to content

Commit

Permalink
wallet: return fee in transfer RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
moneromooo-monero committed Nov 16, 2016
1 parent a99ab49 commit 4eb7347
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/wallet/wallet_rpc_server.cpp
Expand Up @@ -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)
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
8 changes: 8 additions & 0 deletions src/wallet/wallet_rpc_server_commands_defs.h
Expand Up @@ -133,11 +133,13 @@ namespace wallet_rpc
std::string tx_hash;
std::string tx_key;
std::list<std::string> 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()
};
};
Expand Down Expand Up @@ -178,10 +180,12 @@ namespace wallet_rpc
{
std::list<std::string> tx_hash_list;
std::list<std::string> tx_key_list;
std::list<uint64_t> fee_list;

BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(tx_hash_list)
KV_SERIALIZE(tx_key_list)
KV_SERIALIZE(fee_list)
END_KV_SERIALIZE_MAP()
};
};
Expand Down Expand Up @@ -212,10 +216,12 @@ namespace wallet_rpc
{
std::list<std::string> tx_hash_list;
std::list<std::string> tx_key_list;
std::list<uint64_t> fee_list;

BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(tx_hash_list)
KV_SERIALIZE(tx_key_list)
KV_SERIALIZE(fee_list)
END_KV_SERIALIZE_MAP()
};
};
Expand Down Expand Up @@ -256,10 +262,12 @@ namespace wallet_rpc
{
std::list<std::string> tx_hash_list;
std::list<std::string> tx_key_list;
std::list<uint64_t> fee_list;

BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(tx_hash_list)
KV_SERIALIZE(tx_key_list)
KV_SERIALIZE(fee_list)
END_KV_SERIALIZE_MAP()
};
};
Expand Down

0 comments on commit 4eb7347

Please sign in to comment.