mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
wallet2: don't ask for pruned txes yet, we still parse the entire tx
This commit is contained in:
parent
c534fe8d19
commit
f80b1571c6
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue