mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-23 19:05:51 +00:00
do not show marked as used utxos
This commit is contained in:
parent
ffdb74d0e8
commit
fd02935f54
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue