Skip to content

Commit

Permalink
Do not explicitly mention Python to calculate number
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Jul 23, 2024
1 parent 55d07e6 commit fa57569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/core/architecture/gas.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ other implementations don't support integers, and convert them to IEEE-754
doubles, which has a safe integer range up to about 53 bit (e.g. JavaScript and
jq).

<sup>1</sup> Python3: `(2**64-1) / 10**12`
<sup>1</sup> `(2**64-1) / 10**12`

<sup>2</sup> Python3: `((2**64-1)/30) / 10**12`
<sup>2</sup> `((2**64-1)/30) / 10**12`

<details>

Expand Down

0 comments on commit fa57569

Please sign in to comment.