Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion electrum/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ async def add_info_to_txin(txin: TxInput):
except Exception as e:
has_errored = True
_logger.error(f"tx.add_info_from_network() got exc: {e!r}")
if isinstance(e, NetworkException) and not ignore_network_issues:
if not (isinstance(e, NetworkException) and ignore_network_issues):
raise
finally:
has_finished = True
Expand Down