mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
filter out token transactions on main wallet tx list
This commit is contained in:
parent
5cee68913c
commit
73767a474e
1 changed files with 3 additions and 0 deletions
|
@ -75,6 +75,9 @@ class _TransactionsV2ListState extends ConsumerState<TransactionsV2List> {
|
||||||
.transactionV2s
|
.transactionV2s
|
||||||
.where()
|
.where()
|
||||||
.walletIdEqualTo(widget.walletId)
|
.walletIdEqualTo(widget.walletId)
|
||||||
|
.filter()
|
||||||
|
.not()
|
||||||
|
.subTypeEqualTo(TransactionSubType.ethToken)
|
||||||
.sortByTimestampDesc();
|
.sortByTimestampDesc();
|
||||||
|
|
||||||
_subscription = _query.watch().listen((event) {
|
_subscription = _query.watch().listen((event) {
|
||||||
|
|
Loading…
Reference in a new issue