From 3670728fd205ccfc75571ec3a49bfc7d07d11b17 Mon Sep 17 00:00:00 2001 From: slush0 Date: Thu, 4 Dec 2014 01:06:47 +0100 Subject: [PATCH] Added 'm' to MultisigRedeemScriptType --- protob/types.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/types.proto b/protob/types.proto index b5e8463b4..8e2bbabfe 100644 --- a/protob/types.proto +++ b/protob/types.proto @@ -131,6 +131,7 @@ message CoinType { message MultisigRedeemScriptType { repeated bytes 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 } /**