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

Added Features.initialized

This commit is contained in:
slush0 2014-02-01 13:41:46 +01:00
parent 368c31d138
commit fdf8c6fc95
2 changed files with 1 additions and 3 deletions

View File

@ -80,6 +80,7 @@ message Features {
optional bytes language = 9;
optional bytes label = 10 [(binary) = true];
repeated CoinType coins = 11;
optional bool initialized = 12; // True if device cointains seed
}
// Overwrites only filled fields of the structure

View File

@ -67,8 +67,6 @@ message CoinType {
}
message TxInputType {
// required uint32 index = 1; // Position of input in proposed transaction
// required uint64 amount = 3; // Amount to spend in satoshis. The rest will be used for transaction fees
repeated uint32 address_n = 1; // Parameter for address generation algorithm to derive the address from the master node
required bytes prev_hash = 2 [(binary) = true]; // Hash of previous transaction output to spend by this input
required uint32 prev_index = 3; // Index of previous output to spend
@ -77,7 +75,6 @@ message TxInputType {
}
message TxOutputType {
// required uint32 index = 1; // Position of output in proposed transaction
optional bytes address = 1; // Target bitcoin address in base58 encoding
repeated uint32 address_n = 2; // Has higher priority than "address".
required uint64 amount = 3; // Amount to send in satoshis