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
Allow users to specify the number of confirmations they wish to wait for a transaction.
Specification
When broadcasting a transaction, the required_confs kwarg can determine how many confirmations to wait for. Value can be 0 for a non-blocking action that returns a pending TransactionReceipt. The default value is 1.
Once a tx is broadcast, it should also be possible to wait for confirmations via a wait method. If the number of confirmations is already greater than n, nothing happens.
tx.wait(n)
Once this is added, the old and half-broken logic around CTRL-C in the console can also be removed.
The text was updated successfully, but these errors were encountered:
Overview
Allow users to specify the number of confirmations they wish to wait for a transaction.
Specification
When broadcasting a transaction, the
required_confs
kwarg can determine how many confirmations to wait for. Value can be 0 for a non-blocking action that returns a pendingTransactionReceipt
. The default value is 1.Once a tx is broadcast, it should also be possible to wait for confirmations via a
wait
method. If the number of confirmations is already greater thann
, nothing happens.Once this is added, the old and half-broken logic around
CTRL-C
in the console can also be removed.The text was updated successfully, but these errors were encountered: