aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-09-01 09:04:45 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-09-01 09:04:45 +0100
commit85dc0ce3a517ae092846f64710416d2743a8e29e (patch)
tree57701cbb3a78c3e41cfa49cacfe4c2bbb12366a0
parentMerge pull request #1014 (diff)
downloadmonero-85dc0ce3a517ae092846f64710416d2743a8e29e.tar.xz
wallet: sanity check on histogram response
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index d889720af..a4d1ab8ec 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -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)
{