1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-18 10:32:02 +00:00

core/slip39: remove note on T9 keyboard

This commit is contained in:
Tomas Susanka 2019-06-26 12:21:48 +02:00
parent 0a70f8da1b
commit 8f3e648497

View File

@ -60,10 +60,6 @@ async def recovery_device(ctx, msg):
wordcount = storage.get_slip39_words_count() wordcount = storage.get_slip39_words_count()
mnemonic_module = mnemonic.slip39 mnemonic_module = mnemonic.slip39
if mnemonic_module == mnemonic.slip39:
# show a note about the keyboard
await show_keyboard_info(ctx)
if msg.dry_run: if msg.dry_run:
dry_run_mnemonics = [] dry_run_mnemonics = []
dry_run_mnemonic_count = None dry_run_mnemonic_count = None
@ -159,13 +155,11 @@ async def show_keyboard_info(ctx):
await ctx.call(ButtonRequest(code=ButtonRequestType.Other), ButtonAck) await ctx.call(ButtonRequest(code=ButtonRequestType.Other), ButtonAck)
info = InfoConfirm( info = InfoConfirm(
"One more thing. " "Did you know? "
"You can type the letters " "You can type the letters "
"the old-fashioned way " "one by one or use it like "
"one by one or use our " "a T9 keyboard."
"T9 keyboard and press " , "Great!")
"buttons only once."
)
if __debug__: if __debug__:
await ctx.wait(info, confirm_signal) await ctx.wait(info, confirm_signal)
else: else: