Skip to content

Commit

Permalink
Merge branch 'develop' into preview
Browse files Browse the repository at this point in the history
  • Loading branch information
NguyenHuy1812 committed Jun 5, 2024
2 parents 51ca7c8 + 121f527 commit 8de9e54
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/balances/index/processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,10 @@ async function getTxns(
d.successful &&
d.actions?.some(
(a: any) =>
a.native_transfer || equalIgnoreCase(a.name, "Transfer"),
a.native_transfer ||
(equalIgnoreCase(a.name, "Transfer") &&
a.unit?.length >= 3 &&
a.unit?.length <= 6),
),
)
.map((d: any) => {
Expand Down

0 comments on commit 8de9e54

Please sign in to comment.