Browse Source
fix prev: conditional import / type hint failure
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/address_synchronizer.py
|
|
@ -60,7 +60,7 @@ class AddressSynchronizer(Logger): |
|
|
|
inherited by wallet |
|
|
|
""" |
|
|
|
|
|
|
|
def __init__(self, db: JsonDB): |
|
|
|
def __init__(self, db: 'JsonDB'): |
|
|
|
self.db = db |
|
|
|
self.network = None # type: Network |
|
|
|
Logger.__init__(self) |
|
|
|