diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-06-07 12:12:28 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-06-07 12:12:28 -0500 |
commit | 1af890287bdb1f73eb918a570e1b87e243763fff (patch) | |
tree | a8257f1957c72ee17ff21a18b897f78fc926e3e8 | |
parent | Merge pull request #3857 (diff) | |
parent | wallet2: don't ask for pruned txes yet, we still parse the entire tx (diff) | |
download | monero-1af890287bdb1f73eb918a570e1b87e243763fff.tar.xz |
Merge pull request #3890
f80b157 wallet2: don't ask for pruned txes yet, we still parse the entire tx (moneromooo-monero)
-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 3af449455..365a14515 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5672,7 +5672,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) |