Skip to content

Commit

Permalink
fix: add missing tx_id when handle cw20 activity
Browse files Browse the repository at this point in the history
  • Loading branch information
fibonacci998 committed Oct 4, 2024
1 parent 5edd884 commit 562d47c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ select_permissions:
- smart_contract_event_id
- amount
- tx_hash
- tx_id
filter: {}
limit: 100
3 changes: 2 additions & 1 deletion src/services/cw20/cw20.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ export default class Cw20Service extends BullableService {
'smart_contract.id as smart_contract_id',
'smart_contract_event.id as smart_contract_event_id',
'event:transaction.hash',
'event:transaction.height'
'event:transaction.height',
'tx_id'
)
.orderBy('smart_contract_event.id', 'asc');
}
Expand Down

0 comments on commit 562d47c

Please sign in to comment.