Skip to content

Commit

Permalink
fix liquid panding timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
roeierez committed Dec 16, 2024
1 parent 519075a commit e52e127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/src/persist/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ impl Persister {
ptx.tx_id NOT IN (SELECT refund_tx_id FROM chain_swaps WHERE refund_tx_id NOT NULL)
AND {}
ORDER BY -- Order by swap creation time or tx timestamp (in case of direct tx)
COALESCE(rs.created_at, ss.created_at, cs.created_at, ptx.timestamp) DESC
COALESCE(rs.created_at, ss.created_at, cs.created_at, ptx.timestamp, strftime('%s', 'now')) DESC
LIMIT {}
OFFSET {}
",
Expand Down

0 comments on commit e52e127

Please sign in to comment.