Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
fix: correctly map commision field to %
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines authored and sunnygleason committed Aug 5, 2019
1 parent 9b97518 commit 0b2213c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v2/components/Validators/Detail/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const ValidatorsDetail = ({match}: {match: Match}) => {
{
label: 'commission',
hint: '',
value: `${commission}%`,
value: `${(100 * (commission / 0xff)).toFixed(3)}%`,
},
{
label: 'details',
Expand Down

0 comments on commit 0b2213c

Please sign in to comment.