tledger: remove unused imports - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 2717c80a91ae1979df4ee416b98697fc1a734cbe DIR parent 9330750e827626b9e8a1ddb0a525ca77349faecf HTML Author: Neil Booth <kyuupichan@gmail.com> Date: Sat, 30 Jan 2016 18:00:51 +0900 ledger: remove unused imports Diffstat: M plugins/ledger/ledger.py | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) --- DIR diff --git a/plugins/ledger/ledger.py b/plugins/ledger/ledger.py t@@ -1,21 +1,15 @@ -from binascii import unhexlify from binascii import hexlify -from struct import pack,unpack -from sys import stderr -from time import sleep +from struct import unpack +import hashlib 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.plugins import BasePlugin, hook -from electrum.transaction import deserialize 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: from btchip.btchipComm import getDongle, DongleWait from btchip.btchip import btchip