tari icon indicating copy to clipboard operation
tari copied to clipboard

[tech debt] wallet has 2 scanning functions

Open SWvheerden opened this issue 1 year ago • 1 comments

The wallet has two functions that do very much the same job, and the utxo scanner calls both in sequence.

    ScanForRecoverableOutputs(Vec<TransactionOutput>),
    ScanOutputs(Vec<TransactionOutput>),

We can remove one, and only do one function, scanning through all the outputs.

SWvheerden avatar Dec 05 '23 07:12 SWvheerden