1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 22:18:13 +00:00

proto: return of PassphraseAck.state

This commit is contained in:
Pavol Rusnak 2018-02-28 23:25:06 +01:00
parent 317d8af675
commit 0924bd6826
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -278,6 +278,7 @@ message PassphraseRequest {
*/ */
message PassphraseAck { message PassphraseAck {
optional string passphrase = 1; optional string passphrase = 1;
optional bytes state = 2; // expected device state
} }
/** /**
@ -285,7 +286,7 @@ message PassphraseAck {
* @next PassphraseStateAck * @next PassphraseStateAck
*/ */
message PassphraseStateRequest { message PassphraseStateRequest {
optional bytes state = 1; // device state optional bytes state = 1; // actual device state
} }
/** /**