We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88f0a3e + f36904e commit f4ed9a0Copy full SHA for f4ed9a0
subgraph/core/src/KlerosCore.ts
@@ -166,7 +166,10 @@ export function handleNewPeriod(event: NewPeriod): void {
166
continue;
167
}
168
169
- if (vote.choice === null) continue;
+ if (vote.choice === null) {
170
+ juror.save();
171
+ continue;
172
+ }
173
174
// Check if the vote choice matches the final ruling
175
if (vote.choice!.equals(dispute.currentRuling)) {
subgraph/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@kleros/kleros-v2-subgraph",
3
- "version": "0.17.0",
+ "version": "0.17.1",
4
"drtVersion": "0.13.0",
5
"license": "MIT",
6
"scripts": {
0 commit comments