mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Merge pull request #443 from TheBlueMatt/dupin
Check for duplicate txins in CheckTransaction.
This commit is contained in:
commit
4e5d88ce26
@ -314,6 +314,15 @@ bool CTransaction::CheckTransaction() const
|
|||||||
return error("CTransaction::CheckTransaction() : txout total out of range");
|
return error("CTransaction::CheckTransaction() : txout total out of range");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for duplicate inputs
|
||||||
|
set<COutPoint> vInOutPoints;
|
||||||
|
BOOST_FOREACH(const CTxIn& txin, vin)
|
||||||
|
{
|
||||||
|
if (vInOutPoints.count(txin.prevout))
|
||||||
|
return false;
|
||||||
|
vInOutPoints.insert(txin.prevout);
|
||||||
|
}
|
||||||
|
|
||||||
if (IsCoinBase())
|
if (IsCoinBase())
|
||||||
{
|
{
|
||||||
if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
|
if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
|
||||||
|
Loading…
Reference in New Issue
Block a user