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

add GetAddress.multisig field

This commit is contained in:
Pavol Rusnak 2014-12-10 15:37:58 +01:00
parent 3670728fd2
commit 437eff319f

View File

@ -258,9 +258,10 @@ message PublicKey {
* @next Failure
*/
message GetAddress {
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
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 MultisigRedeemScriptType multisig = 4; // Filled if we are showing a multisig address
}
/**