python-ftx
python-ftx copied to clipboard
login signature method ts is str but int given
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.