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
if tx_info['error'] is None: --> check that the key error exists. Use: if 'error' not in tx_info or if tx_info is none. Also check that the result key is there (needed a few lines below)
if 'confirmations' in tx_info['result'] --> use try-except, because this if might fail (not sure about this, it might be fine as is)
the break at the end should not break unless the proof is valid. Check behaviour by using regression test
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: