From 4eef33b05afb5e8465c8947272bc5421b1b6d896 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 18 Jun 2017 21:06:39 +0200 Subject: [PATCH] rename failures: SyntaxError => DataError; Other => ProcessError --- protob/types.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protob/types.proto b/protob/types.proto index d2b8b73d4..feefcfc63 100644 --- a/protob/types.proto +++ b/protob/types.proto @@ -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;