1
0

trezor: remove some keepkey-related stuff

This commit is contained in:
SomberNight
2018-05-01 13:50:22 +02:00
parent c8bed8791a
commit 76e2fadc31
3 changed files with 2 additions and 128 deletions

View File

@@ -91,12 +91,6 @@ class GuiMixin(object):
# Unfortunately the device can't handle self.proto.Cancel()
return self.proto.WordAck(word=word)
def callback_CharacterRequest(self, msg):
char_info = self.handler.get_char(msg)
if not char_info:
return self.proto.Cancel()
return self.proto.CharacterAck(**char_info)
class TrezorClientBase(GuiMixin, PrintError):