From cc77ba523f3892ccbca681a5293c1fed34ab449b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 19 Jul 2018 13:47:49 +0200 Subject: [PATCH] fix minor undefined stuff in address_synchronizer --- electrum/address_synchronizer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/electrum/address_synchronizer.py b/electrum/address_synchronizer.py index 196fcd678..730a9198b 100644 --- a/electrum/address_synchronizer.py +++ b/electrum/address_synchronizer.py @@ -27,10 +27,11 @@ from collections import defaultdict from . import bitcoin 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 .synchronizer import Synchronizer from .verifier import SPV +from .i18n import _ TX_HEIGHT_LOCAL = -2 TX_HEIGHT_UNCONF_PARENT = -1