Merge pull request #3891

9e96873f wallet2: don't ask for pruned txes yet, we still parse the entire tx (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-05-31 21:25:43 +02:00
commit 3380458d2e
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 1 deletions

View File

@ -5658,7 +5658,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)