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

fix whitespace

This commit is contained in:
Pavol Rusnak 2014-04-09 20:19:30 +02:00
parent bff8038fad
commit 28be645370
2 changed files with 4 additions and 4 deletions

View File

@ -441,8 +441,8 @@ message SimpleSignTx {
*/
message TxRequest {
optional RequestType request_type = 1; // what should be filled in TxAck message?
optional TxRequestDetails details = 2;
optional TxRequestSerialized serialized = 3;
optional TxRequestDetails details = 2; // request for tx details
optional TxRequestSerialized serialized = 3; // serialized data and request for next
}
message TxRequestDetails {
@ -453,7 +453,7 @@ message TxRequestDetails {
message TxRequestSerialized {
optional uint32 signature_index = 1; // 'signature' field contains signed input of this index
optional bytes signature = 2; // signature of the signature_index input
optional bytes serialized_tx = 3; // part of serialized and signed transaction
optional bytes serialized_tx = 3; // part of serialized and signed transaction
}
/**

View File

@ -57,7 +57,7 @@ enum RequestType {
TXINPUT = 0;
TXOUTPUT = 1;
TXMETA = 2;
TXFINISHED = 3;
TXFINISHED = 3;
}
/**