Skip to content

Commit

Permalink
feat: add tx_msg_index to query event tx
Browse files Browse the repository at this point in the history
  • Loading branch information
fibonacci998 committed Feb 5, 2024
1 parent a831b72 commit 7f64e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/horoscope-handler/handler.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default class HoroscopeHandlerService extends BaseService {
.whereNull('parent_id');
})
.modifyGraph('events', (builder) => {
builder.select('type', 'source');
builder.select('type', 'source', 'tx_msg_index');
})
.modifyGraph('events.[attributes]', (builder) => {
builder.select('key', 'value');
Expand Down

0 comments on commit 7f64e00

Please sign in to comment.