do not show marked as used utxos

This commit is contained in:
julian 2023-03-08 10:01:13 -06:00
parent ffdb74d0e8
commit fd02935f54

View file

@ -77,6 +77,10 @@ class _CoinControlViewState extends ConsumerState<CoinControlView> {
.getUTXOs(widget.walletId)
.filter()
.isBlockedEqualTo(_showBlocked)
.and()
.group(
(q) => q.usedIsNull().or().usedEqualTo(false),
)
.idProperty()
.findAllSync();