From 209c9f75e01df1045745ed96f3fc78f3a0e42284 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sun, 7 May 2023 21:50:23 +0000 Subject: [PATCH] transaction: fix add_info_from_wallet_and_network fixes https://github.com/spesmilo/electrum/issues/8406 --- electrum/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/transaction.py b/electrum/transaction.py index 82aecaada..22a55709d 100644 --- a/electrum/transaction.py +++ b/electrum/transaction.py @@ -1044,7 +1044,7 @@ class Transaction: Relatedly, this should *not* be called from the network thread. """ # note side-effect: tx is being mutated - from .network import NetworkException + from .network import NetworkException, Network self.add_info_from_wallet(wallet) try: if self.is_missing_info_from_network():