Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Mar 6, 2025
1 parent 55d6bcb commit 7f16b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/helium-vote-service/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ server.post<{
vm.registrar = '${HNT_REGISTRAR.toBase58()}' AND vm.proposal = '${proposal.toBase58()}'
)
LEFT OUTER JOIN delegated_positions dp ON dp.mint = pa.asset
WHERE pa.proxy_config = ${HELIUM_PROXY_CONFIG.toBase58()} AND pa.voter = '${wallet.toBase58()}' AND pa.index > 0 AND (
WHERE pa.proxy_config = '${HELIUM_PROXY_CONFIG.toBase58()}' AND pa.voter = '${wallet.toBase58()}' AND pa.index > 0 AND (
vm is NULL
OR vm.proxy_index >= pa.index
OR vm.choices IS DISTINCT FROM ARRAY[${choices.join(
Expand Down

0 comments on commit 7f16b69

Please sign in to comment.