Skip to content

Commit 1353554

Browse files
authored
fix: pox cycle signer stackers query pagination (#2345)
1 parent c9ef5e8 commit 1353554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/datastore/pg-store-v2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ export class PgStoreV2 extends BasePgStoreModule {
966966
WHERE ps.canonical = TRUE
967967
AND ps.cycle_number = ${cycleNumber}
968968
AND ps.signing_key = ${signerKey}
969-
ORDER BY locked DESC
969+
ORDER BY locked DESC, stacker ASC
970970
LIMIT ${limit}
971971
OFFSET ${offset}
972972
`;

0 commit comments

Comments
 (0)