Browse Source
fix minor undefined stuff in address_synchronizer
3.2.x
SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
1 deletions
-
electrum/address_synchronizer.py
|
@ -27,10 +27,11 @@ from collections import defaultdict |
|
|
|
|
|
|
|
|
from . import bitcoin |
|
|
from . import bitcoin |
|
|
from .bitcoin import COINBASE_MATURITY, TYPE_ADDRESS, TYPE_PUBKEY |
|
|
from .bitcoin import COINBASE_MATURITY, TYPE_ADDRESS, TYPE_PUBKEY |
|
|
from .util import PrintError, profiler |
|
|
from .util import PrintError, profiler, bfh |
|
|
from .transaction import Transaction |
|
|
from .transaction import Transaction |
|
|
from .synchronizer import Synchronizer |
|
|
from .synchronizer import Synchronizer |
|
|
from .verifier import SPV |
|
|
from .verifier import SPV |
|
|
|
|
|
from .i18n import _ |
|
|
|
|
|
|
|
|
TX_HEIGHT_LOCAL = -2 |
|
|
TX_HEIGHT_LOCAL = -2 |
|
|
TX_HEIGHT_UNCONF_PARENT = -1 |
|
|
TX_HEIGHT_UNCONF_PARENT = -1 |
|
|