diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-01 11:31:58 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-01 11:31:58 +0200 |
commit | 27c8713f5693554bb1ede025e01beecc4f687e3b (patch) | |
tree | a60ca57241435edfa482d26e44f941acafb5fe36 | |
parent | Merge pull request #1021 (diff) | |
parent | wallet: sanity check on histogram response (diff) | |
download | monero-27c8713f5693554bb1ede025e01beecc4f687e3b.tar.xz |
Merge pull request #1027
85dc0ce wallet: sanity check on histogram response (moneromooo-monero)
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index b5830f9c9..c6e2411b6 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) { |