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

getblocktemplate-height
moneromooo-monero 6 years ago
parent c534fe8d19
commit f80b1571c6
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

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

Loading…
Cancel
Save