From 1f204aae06fbf61e5df63008124e421ac72af390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Vejpustek?= Date: Thu, 14 Nov 2024 14:29:12 +0100 Subject: [PATCH] chore(common): comment protobuf message --- common/protob/messages-bitcoin.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/protob/messages-bitcoin.proto b/common/protob/messages-bitcoin.proto index fff4d8d406..c38b5cf945 100644 --- a/common/protob/messages-bitcoin.proto +++ b/common/protob/messages-bitcoin.proto @@ -63,11 +63,11 @@ enum MultisigPubkeysOrder { * @embed */ message MultisigRedeemScriptType { - repeated HDNodePathType pubkeys = 1; // pubkeys from multisig address (sorted lexicographically) + repeated HDNodePathType pubkeys = 1; // this field is deprecated and will be removed in the future, use nodes together with address_n instead repeated bytes signatures = 2; // existing signatures for partially signed input required uint32 m = 3; // "m" from n, how many valid signatures is necessary for spending - repeated common.HDNodeType nodes = 4; // simplified way how to specify pubkeys if they share the same address_n path - repeated uint32 address_n = 5; // use only field 1 or fields 4+5, if fields 4+5 are used, field 1 is ignored + repeated common.HDNodeType nodes = 4; + repeated uint32 address_n = 5; // path to derive pubkeys from nodes optional MultisigPubkeysOrder pubkeys_order = 6 [default=PRESERVED]; // order of pubkeys in script pubkey /** * Structure representing HDNode + Path