Make 0-value outputs non-standard

This commit is contained in:
Pieter Wuille 2012-08-24 12:14:48 +02:00
parent c68c4bc7a4
commit 65ce215641

View file

@ -281,9 +281,12 @@ bool CTransaction::IsStandard() const
if (!txin.scriptSig.IsPushOnly())
return false;
}
BOOST_FOREACH(const CTxOut& txout, vout)
BOOST_FOREACH(const CTxOut& txout, vout) {
if (!::IsStandard(txout.scriptPubKey))
return false;
if (txout.nValue == 0)
return false;
}
return true;
}