1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 18:49:07 +00:00

proto: fix whitespace

This commit is contained in:
Pavol Rusnak 2018-07-04 14:04:29 +02:00
parent 7b13d2e886
commit 571c2b4a1d
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 1 additions and 4 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -100,7 +100,6 @@ enum MessageType {
MessageType_DebugLinkMemoryWrite = 112 [(wire_debug_in) = true];
MessageType_DebugLinkFlashErase = 113 [(wire_debug_in) = true];
// Cardano
MessageType_CardanoSignMessage = 300 [(wire_in) = true];
MessageType_CardanoMessageSignature = 301 [(wire_out) = true];
@ -113,7 +112,6 @@ enum MessageType {
MessageType_CardanoAddress = 308 [(wire_out) = true];
MessageType_CardanoTxAck = 309 [(wire_in) = true];
MessageType_CardanoSignedTransaction = 310 [(wire_out) = true];
// Lisk
MessageType_LiskGetAddress = 114 [(wire_in) = true];
@ -1626,6 +1624,6 @@ message CardanoSignedTransaction {
* @prev CardanoTxRequest
* @next CardanoTxRequest
*/
message CardanoTxAck {
message CardanoTxAck {
optional bytes transaction = 1;
}

View File

@ -604,5 +604,4 @@ message CardanoTxOutputType {
optional string address = 1; // target coin address in Base58 encoding
repeated uint32 address_n = 2; // BIP-32 path to derive the key from master node; has higher priority than "address"
optional uint64 amount = 3; // amount to spend
}