Skip to content

Commit 065c6b4

Browse files
committed
Merge bitcoin#7786: Doc: Update isStandardTx comment
03c77fd Doc: Update isStandardTx comment (Matthew English)
2 parents 0afac87 + 03c77fd commit 065c6b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/policy/policy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)