Closed ColonelJ closed 3 years ago
https://github.com/zksync-sdk/zksync-python/blob/9d2ee3698624d8c97647c8b5d10022d46b86bc86/zksync_sdk/zksync_provider/transaction.py#L37
Don't use time.sleep() in async code. :vomiting_face: It will block the whole event loop! Use await asyncio.sleep(). Please correct this ASAP. Thanks :slightly_smiling_face:
time.sleep()
await asyncio.sleep()
https://github.com/zksync-sdk/zksync-python/blob/9d2ee3698624d8c97647c8b5d10022d46b86bc86/zksync_sdk/zksync_provider/transaction.py#L37
Don't use
time.sleep()
in async code. :vomiting_face: It will block the whole event loop! Useawait asyncio.sleep()
. Please correct this ASAP. Thanks :slightly_smiling_face: