Merge branch 'nozeroout' of git://github.com/sipa/bitcoin
This commit is contained in:
commit
9db9642db4
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue