Skip to content

Commit

Permalink
stabilize sorting (to compare against internal)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexshchur committed Dec 11, 2024
1 parent 3928229 commit 6d85cf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ select
entity, blockchain, contract_address, block_time, tx_hash
from entities
where blockchain = '{{blockchain_var}}' and contract_address = {{contract_address_var}}
order by block_time, tx_hash
order by block_time desc, tx_hash
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ select
entity, blockchain, contract_address, block_time, tx_hash
from entities
where blockchain = '{{blockchain}}' and contract_address = {{contract_address}}
order by block_time, tx_hash
order by block_time desc, tx_hash

0 comments on commit 6d85cf5

Please sign in to comment.