File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,12 @@ bool IsStandardTx(const CTransaction& tx, std::string& reason)
7373 BOOST_FOREACH (const CTxIn& txin, tx.vin )
7474 {
7575 // Biggest 'standard' txin is a 15-of-15 P2SH multisig with compressed
76- // keys. (remember the 520 byte limit on redeemScript size) That works
76+ // keys (remember the 520 byte limit on redeemScript size). That works
7777 // out to a (15*(33+1))+3=513 byte redeemScript, 513+1+15*(73+1)+3=1627
7878 // bytes of scriptSig, which we round off to 1650 bytes for some minor
7979 // future-proofing. That's also enough to spend a 20-of-20
8080 // CHECKMULTISIG scriptPubKey, though such a scriptPubKey is not
81- // considered standard)
81+ // considered standard.
8282 if (txin.scriptSig .size () > 1650 ) {
8383 reason = " scriptsig-size" ;
8484 return false ;
You can’t perform that action at this time.
0 commit comments