From 70a1f957ed6547774fc0cfa2ddf42bba8bfe49a2 Mon Sep 17 00:00:00 2001 From: Konnor Klashinsky <31221309+kklash@users.noreply.github.com> Date: Fri, 13 Mar 2020 13:41:04 +1300 Subject: [PATCH] Fix BackupDevice layout on 18-word seed wallets --- core/src/apps/management/reset_device/layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/apps/management/reset_device/layout.py b/core/src/apps/management/reset_device/layout.py index 257697017a..93aa993543 100644 --- a/core/src/apps/management/reset_device/layout.py +++ b/core/src/apps/management/reset_device/layout.py @@ -137,7 +137,7 @@ def _split_share_into_pages(share_words): if length == 12 or length == 20 or length == 24: middle = share[2:-2] last = share[-2:] # two words on the last page - elif length == 33: + elif length == 33 or length == 18: middle = share[2:] last = [] # no words at the last page, because it does not add up else: