Browse Source

ledger: remove unused imports

master
Neil Booth 10 years ago
parent
commit
2717c80a91
  1. 14
      plugins/ledger/ledger.py

14
plugins/ledger/ledger.py

@ -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

Loading…
Cancel
Save