Skip to content

Commit

Permalink
GAS display is afactor of 10 off
Browse files Browse the repository at this point in the history
  • Loading branch information
djnicholson committed Jan 11, 2021
1 parent 6b30bfe commit 0079ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panel/components/tracker/AddressDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function AddressDetails({
<small>GAS balance:</small>
</p>
<p style={{ fontWeight: "bold", fontSize: "1.25rem" }}>
{(addressInfo.gasBalance / 1000000000.0).toLocaleString()} GAS
{(addressInfo.gasBalance / 100000000.0).toLocaleString()} GAS
</p>
</div>
);
Expand Down

0 comments on commit 0079ed3

Please sign in to comment.