electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 414b6e8a06f379e67ee85fe00cc6e9239c5020e2
parent 52eb4aebe606f515a2f9ab11a99dce5a6933756c
Author: SomberNight <somber.night@protonmail.com>
Date:   Mon,  4 Dec 2017 19:04:05 +0100

follow-up 958b794bc9e38343d9a3738f4c22afc3a3b8e917

Diffstat:
Mplugins/keepkey/clientbase.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugins/keepkey/clientbase.py b/plugins/keepkey/clientbase.py @@ -83,7 +83,7 @@ class GuiMixin(object): return self.proto.CharacterAck(**char_info) -class TrezorClientBase(GuiMixin, PrintError): +class KeepKeyClientBase(GuiMixin, PrintError): def __init__(self, handler, plugin, proto): assert hasattr(self, 'tx_api') # ProtocolMixin already constructed? @@ -184,7 +184,7 @@ class TrezorClientBase(GuiMixin, PrintError): self.print_error("clear session:", self) self.prevent_timeouts() try: - super(TrezorClientBase, self).clear_session() + super(KeepKeyClientBase, self).clear_session() except BaseException as e: # If the device was removed it has the same effect... self.print_error("clear_session: ignoring error", str(e)) @@ -192,7 +192,7 @@ class TrezorClientBase(GuiMixin, PrintError): def get_public_node(self, address_n, creating): self.creating_wallet = creating - return super(TrezorClientBase, self).get_public_node(address_n) + return super(KeepKeyClientBase, self).get_public_node(address_n) def close(self): '''Called when Our wallet was closed or the device removed.'''