1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-10 23:40:58 +00:00

Fixed passphrase request

This commit is contained in:
slush0 2014-02-20 15:58:28 +01:00
parent 8f7c8799a4
commit b6a280c380

View File

@ -122,7 +122,7 @@ class TextUIMixin(object):
return proto.PinMatrixAck(pin=pin)
def callback_PassphraseRequest(self, msg):
passphrase = raw_input("Passphrase required: %s " % msg.message)
passphrase = raw_input("Passphrase required: ")
return proto.PassphraseAck(passphrase=passphrase)
def callback_WordRequest(self, msg):