simplewallet: fix sweep_all misreporting sweeped amount for rct outputs

RingCT outputs will be 0 in the vin, so we need to get the actual
amount from elsewhere.
This commit is contained in:
moneromooo-monero
2016-10-15 19:18:52 +01:00
parent 985f61a4ec
commit 8231997b66
3 changed files with 11 additions and 10 deletions

View File

@@ -3978,6 +3978,12 @@ uint64_t wallet2::get_num_rct_outputs()
return resp_t.result.histogram[0].instances;
}
//----------------------------------------------------------------------------------------------------
const wallet2::transfer_details &wallet2::get_transfer_details(size_t idx) const
{
THROW_WALLET_EXCEPTION_IF(idx >= m_transfers.size(), error::wallet_internal_error, "Bad transfer index");
return m_transfers[idx];
}
//----------------------------------------------------------------------------------------------------
std::vector<size_t> wallet2::select_available_unmixable_outputs(bool trusted_daemon)
{
// request all outputs with less than 3 instances