Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ deployments/network

.task
CLAUDE.md
GEMINI.md

# dev-only maintenance files
maintenance
2 changes: 1 addition & 1 deletion internal/migrations/032-order-book-actions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2461,7 +2461,7 @@ CREATE OR REPLACE ACTION settle_market(
for $row in SELECT result_canonical, signature
FROM attestations
WHERE attestation_hash = $market_hash
ORDER BY signed_height DESC
ORDER BY signed_height DESC NULLS LAST
LIMIT 1 {
$result_canonical := $row.result_canonical;
$signature := $row.signature;
Expand Down
Loading