mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
5 lines
117 B
Python
5 lines
117 B
Python
import time
|
|
|
|
def generate_unique_cid(multiplier: int = 1000) -> int:
|
|
return int(round(time.time() * multiplier))
|