From d83bb5464c4efc1e90c9575dd3088333d1066f5f Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 12 Mar 2018 16:10:23 +0100 Subject: [PATCH] add {Storage,Features}.unfinished_backup --- protob/messages.proto | 1 + protob/storage.proto | 1 + 2 files changed, 2 insertions(+) diff --git a/protob/messages.proto b/protob/messages.proto index 1b20b4d61..2ffc08f41 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -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) } /** diff --git a/protob/storage.proto b/protob/storage.proto index 764fcdfb9..bb3789b6e 100644 --- a/protob/storage.proto +++ b/protob/storage.proto @@ -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 }