From 1a6645406655a43061effe3769e0003f374a3c26 Mon Sep 17 00:00:00 2001 From: Jochen Hoenicke Date: Sun, 3 Jul 2016 14:47:22 +0200 Subject: [PATCH] GetAddress with scripttype Added script_type field to GetAddress, which can later be used to display segwit addresses on the Trezor. --- protob/messages.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/messages.proto b/protob/messages.proto index 2a2841bab..fd3792f0f 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -291,6 +291,7 @@ message GetAddress { optional string coin_name = 2 [default='Bitcoin']; 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 + optional InputScriptType script_type = 5 [default=SPENDADDRESS]; // Used to distinguish segwit addresses } /**