Skip to content

Commit

Permalink
Merge pull request #1887 from kleros/fix/arbitration-cost-rounding
Browse files Browse the repository at this point in the history
fix(web): arbitraion-cost-decimals
  • Loading branch information
alcercu authored Feb 6, 2025
2 parents b472514 + 920bf9f commit 99b1c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/Resolver/Parameters/Jurors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Jurors: React.FC = () => {
chainId: DEFAULT_CHAIN,
});

const arbitrationFee = formatETH(data ?? BigInt(0), 5);
const arbitrationFee = formatETH(data ?? BigInt(0), 18);

useEffect(() => setDisputeData({ ...disputeData, arbitrationCost: data?.toString() }), [data]);

Expand Down

0 comments on commit 99b1c9f

Please sign in to comment.