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 Jul 20, 2020. It is now read-only.
the bitfinex official docs has explicitly says 'authNonce string An ever increasing numeric string but should not exceed the MAX_SAFE_INTEGER constant value of 9007199254740991."
but in your code , nonce = int(float(time.time()) * 100000) is already greater then 9007199254740991, it may occur some problem in the future, i think the best way for produce the nonce would like the following:
nonce = str( int(float(time.time()) * 100000) )
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
the bitfinex official docs has explicitly says 'authNonce string An ever increasing numeric string but should not exceed the MAX_SAFE_INTEGER constant value of 9007199254740991."
but in your code , nonce = int(float(time.time()) * 100000) is already greater then 9007199254740991, it may occur some problem in the future, i think the best way for produce the nonce would like the following:
nonce = str( int(float(time.time()) * 100000) )
The text was updated successfully, but these errors were encountered: