Skip to content

Commit

Permalink
inflation
Browse files Browse the repository at this point in the history
  • Loading branch information
bone-house committed Sep 29, 2023
1 parent 960bcad commit 88cf3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/explorer/src/Money.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface Props {
}

export function Money({ children, lamports }: Props) {
const value = (lamports / 1e9) * 20
const value = (lamports / 1e9)
if (children) return children(value)
const fractionDigits = 2
return value.toLocaleString(undefined, { minimumFractionDigits: fractionDigits, maximumFractionDigits: fractionDigits }) + ' SOL'
Expand Down

0 comments on commit 88cf3e6

Please sign in to comment.