We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8e8aac + 4cef767 commit 88be6ecCopy full SHA for 88be6ec
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "starknet-py"
3
-version = "0.17.0"
+version = "0.17.1"
4
description = "A python SDK for Starknet"
5
authors = ["Tomasz Rejowski <tomasz.rejowski@swmansion.com>", "Jakub Ptak <jakub.ptak@swmansion.com>"]
6
include = ["starknet_py", "starknet_py/utils/crypto/libcrypto_c_exports.*"]
starknet_py/net/client.py
@@ -202,6 +202,7 @@ async def wait_for_tx(
202
retries -= 1
203
if retries == 0:
204
raise TransactionNotReceivedError from exc
205
+ await asyncio.sleep(check_interval)
206
207
@abstractmethod
208
async def estimate_fee(
0 commit comments