diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-27 14:34:15 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-12 12:16:20 +0000 |
commit | 5f89caea90a733c33d9fca300f6ec9d2d8747923 (patch) | |
tree | a7130c2ab4d97b6301266ebb54d100ee2294dbcb | |
parent | core: fix unmixable special case allowing ring size below 11 (diff) | |
download | monero-5f89caea90a733c33d9fca300f6ec9d2d8747923.tar.xz |
wallet2: fix ring reuse breaking when using histogram
-rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index b02c95457..c25f17a1f 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -7143,6 +7143,9 @@ void wallet2::get_outs(std::vector<std::vector<tools::wallet2::get_outs_entry>> break; } } + bool use_histogram = amount != 0 || !has_rct_distribution; + if (!use_histogram) + num_outs = rct_offsets[rct_offsets.size() - CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE]; // make sure the real outputs we asked for are really included, along // with the correct key and mask: this guards against an active attack |