wallet2: don't ask for pruned txes yet, we still parse the entire tx

pull/88/head
moneromooo-monero 6 years ago
parent aa6850c71d
commit 9e96873f87
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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)

Loading…
Cancel
Save