commit ccccaf099faa9d3dc920d6895f4e0c4b58fd8e5f
parent 75902f8e35e2a6df67667aed40bdf9c7ad6633f5
Author: SomberNight <somber.night@protonmail.com>
Date: Wed, 30 Oct 2019 03:24:26 +0100
(trivial) logging "verbosity_filter" was renamed to "LOGGING_SHORTCUT"
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/electrum/lnwatcher.py b/electrum/lnwatcher.py
@@ -135,7 +135,7 @@ class SweepStore(SqlDB):
class LNWatcher(AddressSynchronizer):
- verbosity_filter = 'W'
+ LOGGING_SHORTCUT = 'W'
def __init__(self, network: 'Network'):
AddressSynchronizer.__init__(self, JsonDB({}, manual_upgrades=False))
@@ -247,7 +247,7 @@ class LNWatcher(AddressSynchronizer):
class WatchTower(LNWatcher):
- verbosity_filter = 'W'
+ LOGGING_SHORTCUT = 'W'
def __init__(self, network):
LNWatcher.__init__(self, network)