1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 23:48:12 +00:00

whitespace cleanup

This commit is contained in:
Pavol Rusnak 2017-04-06 14:48:13 +02:00
parent 80c7b666a2
commit 6a1adef5f9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 7 additions and 7 deletions

View File

@ -528,7 +528,7 @@ message CipheredKeyValue {
////////////////////////////////// //////////////////////////////////
/** /**
* Request: Estimated size of the transaction * Request: Estimated size of the transaction
* This behaves exactly like SignTx, which means that it can ask using TxRequest * This behaves exactly like SignTx, which means that it can ask using TxRequest
* This call is non-blocking (except possible PassphraseRequest to unlock the seed) * This call is non-blocking (except possible PassphraseRequest to unlock the seed)
* @next TxSize * @next TxSize
@ -694,7 +694,7 @@ message GetECDHSessionKey {
* @prev GetECDHSessionKey * @prev GetECDHSessionKey
*/ */
message ECDHSessionKey { message ECDHSessionKey {
optional bytes session_key = 1; // ECDH session key optional bytes session_key = 1; // ECDH session key
} }
/////////////////// ///////////////////
@ -799,8 +799,8 @@ message DebugLinkMemory {
} }
/** /**
* Request: Write memory to device. WARNING: Writing to the wrong * Request: Write memory to device.
* location can irreparably break the device. * WARNING: Writing to the wrong location can irreparably break the device.
*/ */
message DebugLinkMemoryWrite { message DebugLinkMemoryWrite {
optional uint32 address = 1; optional uint32 address = 1;
@ -809,8 +809,8 @@ message DebugLinkMemoryWrite {
} }
/** /**
* Request: Erase block of flash on device. WARNING: Writing to the wrong * Request: Erase block of flash on device
* location can irreparably break the device. * WARNING: Writing to the wrong location can irreparably break the device.
*/ */
message DebugLinkFlashErase { message DebugLinkFlashErase {
optional uint32 sector = 1; optional uint32 sector = 1;

View File

@ -191,7 +191,7 @@ message TxInputType {
optional uint32 sequence = 5 [default=0xffffffff]; // sequence optional uint32 sequence = 5 [default=0xffffffff]; // sequence
optional InputScriptType script_type = 6 [default=SPENDADDRESS]; // defines template of input script optional InputScriptType script_type = 6 [default=SPENDADDRESS]; // defines template of input script
optional MultisigRedeemScriptType multisig = 7; // Filled if input is going to spend multisig tx optional MultisigRedeemScriptType multisig = 7; // Filled if input is going to spend multisig tx
optional uint64 amount = 8; // amount of previous transaction output (for segwit only) optional uint64 amount = 8; // amount of previous transaction output (for segwit only)
} }
/** /**