1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-22 05:10:56 +00:00

add GetPublicKey.show_display

This commit is contained in:
Pavol Rusnak 2015-11-19 11:16:46 +01:00
parent 72268e816b
commit 28f26b0de9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -255,7 +255,8 @@ message Entropy {
*/
message GetPublicKey {
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
optional string ecdsa_curve_name = 2; // ECDSA curve name to use
optional string ecdsa_curve_name = 2; // ECDSA curve name to use
optional bool show_display = 3; // optionally show on display before sending the result
}
/**
@ -276,7 +277,7 @@ message PublicKey {
message GetAddress {
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
optional string coin_name = 2 [default='Bitcoin'];
optional bool show_display = 3;
optional bool show_display = 3; // optionally show on display before sending the result
optional MultisigRedeemScriptType multisig = 4; // Filled if we are showing a multisig address
}