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

fix: fix protobuf trailing whitespaces

This commit is contained in:
M1nd3r 2024-11-19 14:20:57 +01:00
parent fb28d5ca54
commit 1eeeffdd58
2 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ message DebugLinkGetState {
// changed in 2.6.4: multiple wait types instead of true/false. // changed in 2.6.4: multiple wait types instead of true/false.
optional DebugWaitType wait_layout = 3 [default=IMMEDIATE]; optional DebugWaitType wait_layout = 3 [default=IMMEDIATE];
// THP only - it is used to get information from specified channel // THP only - it is used to get information from specified channel
optional bytes thp_channel_id=4; optional bytes thp_channel_id=4;
} }
/** /**

View File

@ -13,8 +13,8 @@ option (include_in_bitcoin_only) = true;
* Mapping between Trezor wire identifier (uint) and a Thp protobuf message * Mapping between Trezor wire identifier (uint) and a Thp protobuf message
*/ */
enum ThpMessageType { enum ThpMessageType {
reserved 0 to 999; // Values reserved by other messages, see messages.proto reserved 0 to 999; // Values reserved by other messages, see messages.proto
ThpMessageType_ThpCreateNewSession = 1000[(bitcoin_only)=true, (channel_in) = true]; ThpMessageType_ThpCreateNewSession = 1000[(bitcoin_only)=true, (channel_in) = true];
ThpMessageType_ThpNewSession = 1001[(bitcoin_only)=true, (channel_out) = true]; ThpMessageType_ThpNewSession = 1001[(bitcoin_only)=true, (channel_out) = true];
ThpMessageType_ThpStartPairingRequest = 1008 [(bitcoin_only) = true, (pairing_in) = true]; ThpMessageType_ThpStartPairingRequest = 1008 [(bitcoin_only) = true, (pairing_in) = true];