Received: from sog-mx-2.v43.ch3.sourceforge.com ([172.29.43.192] helo=mx.sourceforge.net) by sfs-ml-2.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1XXxpv-0001Cw-UF for bitcoin-development@lists.sourceforge.net; Sat, 27 Sep 2014 19:39:19 +0000 Received-SPF: pass (sog-mx-2.v43.ch3.sourceforge.com: domain of petertodd.org designates 62.13.149.95 as permitted sender) client-ip=62.13.149.95; envelope-from=pete@petertodd.org; helo=outmail149095.authsmtp.com; Received: from outmail149095.authsmtp.com ([62.13.149.95]) by sog-mx-2.v43.ch3.sourceforge.com with esmtp (Exim 4.76) id 1XXxpu-00083G-28 for bitcoin-development@lists.sourceforge.net; Sat, 27 Sep 2014 19:39:19 +0000 Received: from mail-c237.authsmtp.com (mail-c237.authsmtp.com [62.13.128.237]) by punt15.authsmtp.com (8.14.2/8.14.2/) with ESMTP id s8RJdAg0086753; Sat, 27 Sep 2014 20:39:10 +0100 (BST) Received: from savin.petertodd.org (75-119-251-161.dsl.teksavvy.com [75.119.251.161]) (authenticated bits=128) by mail.authsmtp.com (8.14.2/8.14.2/) with ESMTP id s8RJd6To050617 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 27 Sep 2014 20:39:08 +0100 (BST) Date: Sat, 27 Sep 2014 15:39:23 -0400 From: Peter Todd To: Melvin Carvalho Message-ID: <20140927193923.GA5551@savin.petertodd.org> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-Server-Quench: f345248a-467d-11e4-9f74-002590a135d3 X-AuthReport-Spam: If SPAM / abuse - report it at: http://www.authsmtp.com/abuse X-AuthRoute: OCd2Yg0TA1ZNQRgX IjsJECJaVQIpKltL GxAVKBZePFsRUQkR aQdMdAUUC1AEAgsB AmIbWVReU1R7WWo7 bA9PbARUfEhLXhtr VklWR1pVCwQmQhRj fEoYNkZycgVAeXk+ ZEBqWHQVCkd+cER5 Sh9JEWsBMXphaTUb TUkOcAdJcANIexZF O1F8UScOLwdSbGoL NQ4vNDcwO3BTJTpY RgYVKF8UXXNDLTc6 QSVKNzQzFkoEQW0Y KAYrYgZaTQBKekU7 KhMrVF8eewUfDgBX BExBaAAA X-Authentic-SMTP: 61633532353630.1024:706 X-AuthFastPath: 255 X-AuthSMTP-Origin: 75.119.251.161/587 X-Spam-Score: -1.5 (-) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for sender-domain -0.0 SPF_PASS SPF: sender matches SPF record X-Headers-End: 1XXxpu-00083G-28 Cc: Bitcoin Dev Subject: Re: [Bitcoin-development] [ann] Bitcoin Core 0.9.3 has been released X-BeenThere: bitcoin-development@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Sep 2014 19:39:20 -0000 --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 27, 2014 at 09:32:02PM +0200, Melvin Carvalho wrote: > > As well as everyone that helped translating on > > [Transifex](https://www.transifex.com/projects/p/bitcoin/). > > >=20 > Great work! >=20 > Apologies if this has been covered. But I was curious about: >=20 > - Increase IsStandard() scriptSig length >=20 > Is there some place I read more to understand this change? commit 84fe0ffd685627689bbbcd14cf419938f2a100b2 Author: Peter Todd Date: Mon Mar 10 16:38:44 2014 -0400 Increase IsStandard() scriptSig length Removes the limits on number of pubkeys for P2SH CHECKMULTISIG outputs. Previously with the 500 byte scriptSig limit there were odd restrictions where even a 1-of-12 P2SH could be spent in a standard transaction(1), yet multisig scriptPubKey's requiring more signatures quickly ran out of scriptSig space. From a "stuff-data-in-the-blockchain" point of view not much has changed as with the prior commit now only allowing the dummy value to be null the newly allowed scriptSig space can only be used for signatures. In any case, just using more outputs is trivial and doesn't cost much. 1) See 779b519480d8c5346de6e635119c7ee772e97ec872240c45e558f582a37b4b73 Mined by BTC Guild. diff --git a/src/main.cpp b/src/main.cpp index a0b6842..63b87b8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -513,10 +513,14 @@ bool IsStandardTx(const CTransaction& tx, string& rea= son) BOOST_FOREACH(const CTxIn& txin, tx.vin) { - // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG - // pay-to-script-hash, which is 3 ~80-byte signatures, 3 - // ~65-byte public keys, plus a few script ops. - if (txin.scriptSig.size() > 500) { + // Biggest 'standard' txin is a 15-of-15 P2SH multisig with compre= ssed + // keys. (remember the 520 byte limit on redeemScript size) That w= orks + // out to a (15*(33+1))+3=3D513 byte redeemScript, 513+1+15*(73+1)= =3D1624 + // bytes of scriptSig, which we round off to 1650 bytes for some m= inor + // future-proofing. That's also enough to spend a 20-of-20 + // CHECKMULTISIG scriptPubKey, though such a scriptPubKey is not + // considered standard) + if (txin.scriptSig.size() > 1650) { reason =3D "scriptsig-size"; return false; } --=20 'peter'[:-1]@petertodd.org 0000000000000000188beaebec22c62bcff1a5d92e5d21432e797ec717cfed3a --UugvWAfsgieZRqgk Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- iQGrBAEBCACVBQJUJxJoXhSAAAAAABUAQGJsb2NraGFzaEBiaXRjb2luLm9yZzAw MDAwMDAwMDAwMDAwMDAxODhiZWFlYmVjMjJjNjJiY2ZmMWE1ZDkyZTVkMjE0MzJl Nzk3ZWM3MTdjZmVkM2EvFIAAAAAAFQARcGthLWFkZHJlc3NAZ251cGcub3JncGV0 ZUBwZXRlcnRvZC5vcmcACgkQJIFAPaXwkfte7QgAgQxwCTVCTaEi1HulD3KwgraB BARJFzD0Aa3fh7ohr7elJ83a58gsc43fcpiyPkp2wNnx5NKNVhmWS2cCEA6f6tRu r3WS+/sDLJuPz5ZBmvYaKrsv2p3FS+kKoQ3p6N1LgUYfp/aHH3x4NSwmY9SV10Kq N/p8ZFGrhKb12zM5EzcpGGU1hycwmp2WDPSryLksQa12/ct+zfF1sjh1h15jvSQW c3jiU6H4Za64KxSXa8ixUdnXGzGEGRlCZlA4eZN7KO/2Hv6pv98RI+mrK5LlQ5hn ddndlz27haciwxWtYNSiqZNyhHKuUub5AyWDB3fy5HE0gZ7rexhsWem07JfEVQ== =tYEX -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk--