1
0

fix imports in hardware wallets

This commit is contained in:
ThomasV
2015-12-01 10:00:39 +01:00
parent afae9a097e
commit d5f43610ed
5 changed files with 100 additions and 90 deletions

View File

@@ -496,7 +496,7 @@ class LedgerPlugin(BasePlugin):
tx.error = str(e)
class CmdlinePlugin(Plugin):
class CmdlinePlugin(LedgerPlugin):
@hook
def cmdline_load_wallet(self, wallet):
self.wallet = wallet

View File

@@ -1,6 +1,10 @@
from PyQt4.Qt import QApplication, QMessageBox, QDialog, QInputDialog, QLineEdit, QVBoxLayout, QLabel, QThread, SIGNAL
import PyQt4.QtCore as QtCore
from electrum_gui.qt.password_dialog import make_password_dialog, run_password_dialog
from electrum.plugins import BasePlugin, hook
from ledger import LedgerPlugin
class Plugin(LedgerPlugin):