Browse Source
(trivial) logging "verbosity_filter" was renamed to "LOGGING_SHORTCUT"
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
2 deletions
-
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) |
|
|
|