diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-31 16:45:43 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-31 16:46:58 +0100 |
commit | f80b1571c699e1c38317b0c4a3828bdf4e692281 (patch) | |
tree | e404bd15c2b73ca09c0a0c61cb7d0d6bf2c00b82 | |
parent | Merge pull request #3251 (diff) | |
download | monero-f80b1571c699e1c38317b0c4a3828bdf4e692281.tar.xz |
wallet2: don't ask for pruned txes yet, we still parse the entire tx
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index d11c99378..6cec95126 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5666,7 +5666,7 @@ bool wallet2::find_and_save_rings(bool force) for (size_t slice = 0; slice < txs_hashes.size(); slice += SLICE_SIZE) { req.decode_as_json = false; - req.prune = true; + req.prune = false; req.txs_hashes.clear(); size_t ntxes = slice + SLICE_SIZE > txs_hashes.size() ? txs_hashes.size() - slice : SLICE_SIZE; for (size_t s = slice; s < slice + ntxes; ++s) |