You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 22, 2019. It is now read-only.
Ah figured out more of the problem. Javascript doesn't have adequate precision for numbers that large, try Math.pow(2, 64) - 1 === Math.pow(2, 64) from node and you'll see what I mean.
The array is then initialized to 9 bytes instead of 8, resulting in an infinite loop in the encodeInt function.
Seems to be the way it is bit shifting in
encodeInt
after adjusting data to be represented as a positive number.To reproduce:
The text was updated successfully, but these errors were encountered: