Remove further usages of int(int_timestamp)

This commit is contained in:
Matthias
2021-07-05 19:51:14 +02:00
parent 1682578a39
commit 10998eb0fa
3 changed files with 5 additions and 5 deletions

View File

@@ -578,7 +578,7 @@ class Exchange:
'side': side,
'remaining': _amount,
'datetime': arrow.utcnow().isoformat(),
'timestamp': int(arrow.utcnow().int_timestamp * 1000),
'timestamp': arrow.utcnow().int_timestamp * 1000,
'status': "closed" if ordertype == "market" else "open",
'fee': None,
'info': {}