1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-28 16:21:03 +00:00

add {Storage,Features}.unfinished_backup

This commit is contained in:
Pavol Rusnak 2018-03-12 16:10:23 +01:00
parent 998eb4c7a7
commit d83bb5464c
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 0 deletions

View File

@ -152,6 +152,7 @@ message Features {
optional uint32 fw_patch = 24; // reported firmware version if in bootloader mode
optional string fw_vendor = 25; // reported firmware vendor if in bootloader mode
optional bytes fw_vendor_keys = 26; // reported firmware vendor keys (their hash)
optional bool unfinished_backup = 27; // report unfinished backup (equals to Storage.unfinished_backup)
}
/**

View File

@ -28,4 +28,5 @@ message Storage {
optional bool needs_backup = 12; // seed is not backed up yet
optional uint32 flags = 13; // device flags
optional HDNodeType u2froot = 14; // U2F root node
optional bool unfinished_backup = 15; // seed was improperly backed up
}