1
0

Ledger: move get_client() to the plugin

Mirrors the trezor code
This commit is contained in:
Neil Booth
2016-01-11 15:08:12 +09:00
parent deccca1827
commit 986e198e87
2 changed files with 86 additions and 82 deletions

View File

@@ -1,11 +1,12 @@
import threading
from PyQt4.Qt import (QDialog, QInputDialog, QLineEdit,
QVBoxLayout, QLabel, SIGNAL)
import PyQt4.QtCore as QtCore
import threading
from electrum.plugins import BasePlugin, hook
from ledger import LedgerPlugin, BTChipWallet
from electrum.i18n import _
from electrum.plugins import hook
from .ledger import LedgerPlugin, BTChipWallet
class Plugin(LedgerPlugin):