Skip to content

Commit a29a255

Browse files
alcercujaybuidl
authored andcommitted
fix(subgraph): wrong court PNK redistribution
1 parent d3f1cbb commit a29a255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subgraph/src/KlerosCore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,6 @@ export function handleTokenAndETHShift(event: TokenAndETHShiftEvent): void {
169169
event.block.timestamp
170170
);
171171
court.paidETH = court.paidETH.plus(ethAmount);
172-
court.paidPNK = court.paidETH.plus(tokenAmount);
172+
court.paidPNK = court.paidPNK.plus(tokenAmount);
173173
court.save();
174174
}

0 commit comments

Comments
 (0)