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

proto: add Failure_PinMismatch

This commit is contained in:
Pavol Rusnak 2018-02-20 17:27:26 +01:00
parent 5c5fb7204e
commit 43b6464883
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -41,6 +41,7 @@ enum FailureType {
Failure_ProcessError = 9; Failure_ProcessError = 9;
Failure_NotEnoughFunds = 10; Failure_NotEnoughFunds = 10;
Failure_NotInitialized = 11; Failure_NotInitialized = 11;
Failure_PinMismatch = 12;
Failure_FirmwareError = 99; Failure_FirmwareError = 99;
} }