Skip to content

Commit

Permalink
fix(dcellar-web-ui): lockfee format function
Browse files Browse the repository at this point in the history
  • Loading branch information
devinxl committed Jul 11, 2023
1 parent a454cf4 commit c797a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dcellar-web-ui/src/utils/object/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const convertVisibility = () => {
}

export const formatLockFee = (lockFee: string | undefined) => {
return String(Number(lockFee || '') / Math.pow(10, 19));
return String(Number(lockFee || '') / Math.pow(10, 18));
};

0 comments on commit c797a5e

Please sign in to comment.