Skip to content

Commit 99b1c9f

Browse files
authored
Merge pull request #1887 from kleros/fix/arbitration-cost-rounding
fix(web): arbitraion-cost-decimals
2 parents b472514 + 920bf9f commit 99b1c9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/pages/Resolver/Parameters/Jurors.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const Jurors: React.FC = () => {
6262
chainId: DEFAULT_CHAIN,
6363
});
6464

65-
const arbitrationFee = formatETH(data ?? BigInt(0), 5);
65+
const arbitrationFee = formatETH(data ?? BigInt(0), 18);
6666

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

0 commit comments

Comments
 (0)