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

rename failures: SyntaxError => DataError; Other => ProcessError

This commit is contained in:
Pavol Rusnak 2017-06-18 21:06:39 +02:00
parent 73b9ffc36a
commit 4eef33b05a
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -30,13 +30,13 @@ extend google.protobuf.EnumValueOptions {
enum FailureType {
Failure_UnexpectedMessage = 1;
Failure_ButtonExpected = 2;
Failure_SyntaxError = 3;
Failure_DataError = 3;
Failure_ActionCancelled = 4;
Failure_PinExpected = 5;
Failure_PinCancelled = 6;
Failure_PinInvalid = 7;
Failure_InvalidSignature = 8;
Failure_Other = 9;
Failure_ProcessError = 9;
Failure_NotEnoughFunds = 10;
Failure_NotInitialized = 11;
Failure_FirmwareError = 99;