Skip to content

Commit

Permalink
chore(core): add ability to set up a device with SLIP39 "single"
Browse files Browse the repository at this point in the history
  • Loading branch information
ibz committed Jun 5, 2024
1 parent ed58409 commit ff242e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions core/.changelog.d/3868.added
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Added flag for setting up device using SLIP39 "single".
Renamed flag used for setting up device using BIP39 to `basic`.
3 changes: 2 additions & 1 deletion python/src/trezorlib/cli/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
}

BACKUP_TYPE = {
"single": messages.BackupType.Bip39,
"bip39": messages.BackupType.Bip39,
"single": messages.BackupType.Slip39_Single_Extendable,
"shamir": messages.BackupType.Slip39_Basic,
"advanced": messages.BackupType.Slip39_Advanced,
}
Expand Down

0 comments on commit ff242e9

Please sign in to comment.