From de7a690d5947f0cfe4fa1be69ff47ee5da092596 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Thu, 31 May 2018 16:45:43 +0100 Subject: [PATCH] wallet2: don't ask for pruned txes yet, we still parse the entire tx --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index b28539c18..a5244451b 100755 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5647,7 +5647,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)