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
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 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) )