1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00

add imported flag

This commit is contained in:
Pavol Rusnak 2014-05-26 00:45:51 +02:00
parent e4f9dcd7c9
commit 1865a0428d
2 changed files with 2 additions and 0 deletions

View File

@ -91,6 +91,7 @@ message Features {
optional bool initialized = 12; // does device contain seed?
optional bytes revision = 13; // SCM revision of firmware
optional bytes bootloader_hash = 14; // hash of the bootloader
optional bool imported = 15; // was storage imported from an external source?
}
/**

View File

@ -23,4 +23,5 @@ message Storage {
optional string pin = 6; // current PIN
optional string language = 7; // current language
optional string label = 8; // device label
optional bool imported = 9; // was storage imported from an external source?
}