mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 21:48:13 +00:00
feat(python): add ability to set up a device with SLIP39 "single"
This commit is contained in:
parent
7b291725e2
commit
2c390a2030
1
python/.changelog.d/3868.added
Normal file
1
python/.changelog.d/3868.added
Normal file
@ -0,0 +1 @@
|
||||
Added flag for setting up device using SLIP39 "single".
|
1
python/.changelog.d/3868.incompatible
Normal file
1
python/.changelog.d/3868.incompatible
Normal file
@ -0,0 +1 @@
|
||||
Renamed flag used for setting up device using BIP39 to `bip39`.
|
@ -34,7 +34,8 @@ RECOVERY_DEVICE_INPUT_METHOD = {
|
||||
}
|
||||
|
||||
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,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user