From 4a27e4e51a70e4afde1a742fd46e25f6deb2dca8 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 20 Jul 2022 20:31:26 +0200 Subject: [PATCH] fix #7895: rename parameter --- electrum/lnwatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/lnwatcher.py b/electrum/lnwatcher.py index 055202f28..677df4064 100644 --- a/electrum/lnwatcher.py +++ b/electrum/lnwatcher.py @@ -529,7 +529,7 @@ class LNWalletWatcher(LNWatcher): # we may have a tx with a different fee, in which case it will be replaced if old_tx != new_tx: try: - tx_was_added = self.adb.add_transaction(new_tx, notify=(old_tx is None)) + tx_was_added = self.adb.add_transaction(new_tx, notify_GUI=(old_tx is None)) except Exception as e: self.logger.info(f'could not add future tx: {name}. prevout: {prevout} {str(e)}') tx_was_added = False