You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now w3.eth.wait_for_transaction_receipt works just fine with timeout=None, because timeout is passed to asyncio.wait_for which accepts an Optional[float] timeout.
I think explicitly supporting timeout=None is useful for when wait_for_transaction_receipt is a subroutine in higher-level code which wants to specify an optional timeout and trivially delegate that to wait_for_transaction_receipt.
The text was updated successfully, but these errors were encountered:
Right now
w3.eth.wait_for_transaction_receipt
works just fine withtimeout=None
, becausetimeout
is passed toasyncio.wait_for
which accepts anOptional[float]
timeout.I think explicitly supporting
timeout=None
is useful for whenwait_for_transaction_receipt
is a subroutine in higher-level code which wants to specify an optional timeout and trivially delegate that towait_for_transaction_receipt
.The text was updated successfully, but these errors were encountered: