From 94d17ef8bc56d7c0e6ddfed39e84987543259e05 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 15 Dec 2014 15:01:25 +0100 Subject: [PATCH] TxOutputType.multisig should be optional, not repeated --- protob/types.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protob/types.proto b/protob/types.proto index de26e0f4f..6b9ac3691 100644 --- a/protob/types.proto +++ b/protob/types.proto @@ -165,7 +165,7 @@ message TxOutputType { repeated uint32 address_n = 2; // BIP-32 path to derive the key from master node; has higher priority than "address" required uint64 amount = 3; // amount to spend in satoshis required OutputScriptType script_type = 4; // output script type - repeated MultisigRedeemScriptType multisig = 5; // Defines multisig address; script_type must be PAYTOMULTISIG + optional MultisigRedeemScriptType multisig = 5; // Defines multisig address; script_type must be PAYTOMULTISIG } /**