Skip to content

Commit 3bc827c

Browse files
authored
Merge branch 'master' into beta
2 parents 879a755 + a669da0 commit 3bc827c

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
* prune and restore mempool transactions with equal nonces for the same sender ([#2091](https://github.com/hirosystems/stacks-blockchain-api/issues/2091)) ([1ce75de](https://github.com/hirosystems/stacks-blockchain-api/commit/1ce75de8f7866c6e528b56706e624c4600b17412))
3030
* use total_count CTE and return it with the parsed results ([#2073](https://github.com/hirosystems/stacks-blockchain-api/issues/2073)) ([bb30911](https://github.com/hirosystems/stacks-blockchain-api/commit/bb30911bae0d3cb5fb26312d84dce7b04f5ffa97))
3131

32+
## [8.0.4](https://github.com/hirosystems/stacks-blockchain-api/compare/v8.0.3...v8.0.4) (2024-10-14)
33+
34+
### Bug Fixes
35+
36+
* /extended/v2/pox/cycles/{n}/signers/{key}/stackers returning 500 error ([d6e0010](https://github.com/hirosystems/stacks-blockchain-api/commit/d6e0010ca7104d4fdf3a1593a41b29e6d56578bc))
37+
3238
## [8.0.3](https://github.com/hirosystems/stacks-blockchain-api/compare/v8.0.2...v8.0.3) (2024-10-01)
3339

3440

src/datastore/pg-store-v2.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -914,9 +914,9 @@ export class PgStoreV2 extends BasePgStoreModule {
914914
cs.stacker_type,
915915
COUNT(*) OVER()::int AS total
916916
FROM pox_sets ps
917-
LEFT JOIN combined_stackers cs ON ps.signing_key = cs.signer_key
918-
WHERE ps.canonical = TRUE
919-
AND ps.cycle_number = ${cycleNumber}
917+
INNER JOIN combined_stackers cs ON ps.signing_key = cs.signer_key
918+
WHERE ps.canonical = TRUE
919+
AND ps.cycle_number = ${cycleNumber}
920920
AND ps.signing_key = ${signerKey}
921921
ORDER BY locked DESC
922922
LIMIT ${limit}

0 commit comments

Comments
 (0)