src/apps/management: fix missing return true

This commit is contained in:
Pavol Rusnak 2018-02-28 18:23:10 +01:00
parent 8ac915e75f
commit a13639997e
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 1 additions and 0 deletions

View File

@ -185,6 +185,7 @@ async def check_mnemonic(ctx, mnemonic: str) -> bool:
if not await check_word(ctx, words, index):
return False
return True
@ui.layout
async def check_word(ctx, words: list, index: int):