From ae1900a2bcc9a140f636d9ef2c5e029fe397441a Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Thu, 22 Jun 2017 13:38:06 +0300 Subject: [PATCH] Allow testing recovery with initialized device (#33) This would allow safe mnemonic validation by using a dry-run flag. --- protob/messages.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/messages.proto b/protob/messages.proto index 4a3a14f75..b52a48dbc 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -395,6 +395,7 @@ message RecoveryDevice { // 7 reserved for unused recovery method optional uint32 type = 8; // supported recovery type (see RecoveryType) optional uint32 u2f_counter = 9; // U2F counter + optional bool dry_run = 10; // perform dry-run recovery workflow (for safe mnemonic validation) } /**