You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/helium-vote-service/src/index.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -533,7 +533,7 @@ server.post<{
533
533
vm.registrar = '${HNT_REGISTRAR.toBase58()}' AND vm.proposal = '${proposal.toBase58()}'
534
534
)
535
535
LEFT OUTER JOIN delegated_positions dp ON dp.mint = pa.asset
536
-
WHERE pa.proxy_config = '${HELIUM_PROXY_CONFIG.toBase58()}' AND pa.voter = '${wallet.toBase58()}' AND pa.index > 0 AND (
536
+
WHERE pa.proxy_config = '${HELIUM_PROXY_CONFIG.toBase58()}' AND pa.voter = '${wallet.toBase58()}' AND pa.index > 0 AND pa.expiration_time > FLOOR(EXTRACT(EPOCH FROM CURRENT_TIMESTAMP)) AND (
0 commit comments