Skip to content

Commit

Permalink
fix: mapMultisigPendingTransactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor Komarov committed Dec 19, 2024
1 parent e46140c commit 025f73f
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,14 @@ mixin TonWalletRepositoryImpl implements TonWalletRepository {
if (wallet == null) return [];

return transactions
.where((e) => e.isPendingTransaction(multisigPendingTransactions))
.where(
(e) =>
e.isPendingTransaction(multisigPendingTransactions) &&
!e.isExpiredTransaction(
details: wallet.details,
transactions: transactions,
),
)
.map(
(e) {
final lt = e.transaction.id.lt;
Expand Down

0 comments on commit 025f73f

Please sign in to comment.