diff --git a/web/src/pages/Cases/CaseDetails/MaintenanceButtons/DistributeRewards.tsx b/web/src/pages/Cases/CaseDetails/MaintenanceButtons/DistributeRewards.tsx index 21a9cad24..f20702276 100644 --- a/web/src/pages/Cases/CaseDetails/MaintenanceButtons/DistributeRewards.tsx +++ b/web/src/pages/Cases/CaseDetails/MaintenanceButtons/DistributeRewards.tsx @@ -52,7 +52,10 @@ const DistributeRewards: React.FC = ({ id, roundIndex, setIs const argsArr: TransactionBatcherConfig = []; for (const round of rounds) { - argsArr.push({ ...baseArgs, args: [BigInt(id), BigInt(round.id.split("-")[1]), BigInt(round.nbVotes)] }); + argsArr.push({ + ...baseArgs, + args: [BigInt(id), BigInt(round.id.split("-")[1]), BigInt(round.nbVotes) * BigInt(2)], + }); } setContractConfigs(argsArr);