Merge pull request #1027

85dc0ce wallet: sanity check on histogram response (moneromooo-monero)
pull/95/head
Riccardo Spagni 8 years ago
commit 27c8713f56
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -2709,6 +2709,8 @@ void wallet2::get_outs(std::vector<std::vector<entry>> &outs, const std::list<tr
}
}
LOG_PRINT_L1("" << num_outs << " outputs of size " << print_money(amount));
THROW_WALLET_EXCEPTION_IF(num_outs == 0, error::wallet_internal_error,
"histogram reports no outputs for " + boost::lexical_cast<std::string>(amount) + ", not even ours");
if (num_outs <= requested_outputs_count)
{

Loading…
Cancel
Save