1
0

ledger: remove unused imports

This commit is contained in:
Neil Booth
2016-01-30 18:00:51 +09:00
parent 9330750e82
commit 2717c80a91

View File

@@ -1,21 +1,15 @@
from binascii import unhexlify
from binascii import hexlify from binascii import hexlify
from struct import pack,unpack from struct import unpack
from sys import stderr import hashlib
from time import sleep
import electrum import electrum
from electrum.bitcoin import EncodeBase58Check, DecodeBase58Check, public_key_to_bc_address, bc_address_to_hash_160, TYPE_ADDRESS from electrum.bitcoin import EncodeBase58Check, DecodeBase58Check, TYPE_ADDRESS
from electrum.i18n import _ from electrum.i18n import _
from electrum.plugins import BasePlugin, hook from electrum.plugins import BasePlugin, hook
from electrum.transaction import deserialize
from ..hw_wallet import BIP44_HW_Wallet from ..hw_wallet import BIP44_HW_Wallet
from electrum.util import format_satoshis_plain, print_error
from electrum.util import format_satoshis_plain, print_error, print_msg
import hashlib
import threading
try: try:
from btchip.btchipComm import getDongle, DongleWait from btchip.btchipComm import getDongle, DongleWait
from btchip.btchip import btchip from btchip.btchip import btchip