Fix #2120: return per-tx amount in transfer_split RPC call.

This commit is contained in:
binaryFate 2017-06-25 20:42:56 +02:00
parent 0c6ea4f8a6
commit 5a09d79caf
2 changed files with 9 additions and 0 deletions

View file

@ -509,6 +509,7 @@ namespace tools
try
{
uint64_t mixin = req.mixin;
uint64_t ptx_amount;
if (mixin < 2 && m_wallet->use_fork_rules(2, 10)) {
LOG_PRINT_L1("Requested mixin " << req.mixin << " too low for hard fork 2, using 2");
mixin = 2;
@ -530,6 +531,12 @@ namespace tools
{
res.tx_key_list.push_back(epee::string_tools::pod_to_hex(ptx.tx_key));
}
// Compute amount leaving wallet in tx. By convention dests does not include change outputs
ptx_amount = 0;
for(auto & dt: ptx.dests)
ptx_amount += dt.amount;
res.amount_list.push_back(ptx_amount);
res.fee_list.push_back(ptx.fee);
}