protobuf files cleanup

This commit is contained in:
Pavol Rusnak 2013-10-24 19:29:11 +02:00
parent 817cd6ea86
commit ed0813682c
2 changed files with 107 additions and 106 deletions

View File

@ -1,5 +1,5 @@
/*
This file describes Protocol buffers messages for bitcoin hardware wallet devices.
Messages for TREZOR communication
Author: Marek Palatinus <slush@satoshilabs.com>
@ -269,7 +269,8 @@ message LoadDevice {
// Response: EntropyRequest, PinMatrixRequest, Failure
message ResetDevice {
optional bool display_random = 1; // If set, displays entropy generated by the device used
// for generating the seed *before* asking for additional entropy from computer
// for generating the seed *before* asking
// for additional entropy from computer
}
// Asks for additional Entropy from host computer
@ -341,7 +342,7 @@ message TxOutput {
required bytes address = 2; // Target bitcoin address in base58 encoding
repeated uint32 address_n = 3; // Has higher priority than "address". If the output is to myself, specify parameter for address generation algorithm.
required uint64 amount = 4; // Amount to send in satoshis
required ScriptType script_type = 5;// Select output script type
required ScriptType script_type = 5; // Select output script type
repeated bytes script_args = 6 [(binary) = true]; // Provide additional parameters for the script (its script-depended)
}