From 44085a9d1a28e8716856fa20158366b245c9e91a Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 3 Feb 2019 23:20:20 +0100 Subject: [PATCH] protob: add simplified fields for MultisigRedeemScriptType --- protob/messages-bitcoin.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protob/messages-bitcoin.proto b/protob/messages-bitcoin.proto index 2acab9cd5..a2f3e5813 100644 --- a/protob/messages-bitcoin.proto +++ b/protob/messages-bitcoin.proto @@ -26,6 +26,8 @@ message MultisigRedeemScriptType { repeated HDNodePathType pubkeys = 1; // pubkeys from multisig address (sorted lexicographically) repeated bytes signatures = 2; // existing signatures for partially signed input optional uint32 m = 3; // "m" from n, how many valid signatures is necessary for spending + repeated hw.trezor.messages.common.HDNodeType nodes = 4; // simplified way how to specify pubkeys if they share the same address_n path + repeated uint32 common_address_n = 5; // use only field 1 or fields 4+5, if fields 4+5 are used, field 1 is ignored /** * Structure representing HDNode + Path */