We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6cd4369 + 14994db commit 142273cCopy full SHA for 142273c
subgraph/core/src/DisputeKitClassic.ts
@@ -161,7 +161,7 @@ export function handleChoiceFunded(event: ChoiceFunded): void {
161
const localDispute = ClassicDispute.load(`${disputeKitID}-${coreDisputeID}`);
162
if (!localDispute) return;
163
164
- if (BigInt.fromString(disputeKitID) === newDisputeKitID) {
+ if (BigInt.fromString(disputeKitID).equals(newDisputeKitID)) {
165
const newRoundIndex = localDispute.currentLocalRoundIndex.plus(ONE);
166
const numberOfChoices = localDispute.numberOfChoices;
167
localDispute.currentLocalRoundIndex = newRoundIndex;
subgraph/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@kleros/kleros-v2-subgraph",
3
- "version": "0.16.1",
+ "version": "0.16.2",
4
"drtVersion": "0.12.0",
5
"license": "MIT",
6
"scripts": {
0 commit comments