python-ftx icon indicating copy to clipboard operation
python-ftx copied to clipboard

login signature method ts is str but int given

Open firebird631 opened this issue 3 years ago • 0 comments

in def login(self, socket_name: str): if not socket_name: return ts = int(time.time() * 1000) sign = ws_signature(ts, self.secret)

ts is in int but signature method look for an str.

firebird631 avatar Sep 14 '22 09:09 firebird631