Skip to content

Commit 7bf9c08

Browse files
committed
fix: events_to_process query
1 parent 0fb815e commit 7bf9c08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def events_to_process(cur, index_table_name):
136136
AND e.type IS NULL
137137
AND e.tx_idx IS NULL
138138
AND e.msg_idx IS NULL)
139-
ORDER BY block_height ASC,
139+
ORDER BY block_height ASC, tx_idx ASC, msg_idx ASC,
140140
KEY ASC;
141141
"""
142142
)

0 commit comments

Comments
 (0)