Skip to content

Commit 94c4074

Browse files
authored
Merge branch 'dev' into feat(web)/Extra-statistics-on-the-Home-page
2 parents 82d8e7a + 22e1485 commit 94c4074

File tree

2 files changed

+48
-11
lines changed

2 files changed

+48
-11
lines changed
+44-10
Loading

web/src/pages/Cases/CaseDetails/MaintenanceButtons/DistributeRewards.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ const DistributeRewards: React.FC<IDistributeRewards> = ({ id, roundIndex, setIs
5252
const argsArr: TransactionBatcherConfig = [];
5353

5454
for (const round of rounds) {
55-
argsArr.push({ ...baseArgs, args: [BigInt(id), BigInt(round.id.split("-")[1]), BigInt(round.nbVotes)] });
55+
argsArr.push({
56+
...baseArgs,
57+
args: [BigInt(id), BigInt(round.id.split("-")[1]), BigInt(round.nbVotes) * BigInt(2)],
58+
});
5659
}
5760

5861
setContractConfigs(argsArr);

0 commit comments

Comments
 (0)