This commit is contained in:
jl777
2016-10-23 19:05:44 -03:00
parent c3e43fb182
commit 14512c9697

View File

@@ -706,7 +706,10 @@ bool IsFinalTx(const CTransaction &tx, int nBlockHeight, int64_t nBlockTime)
}
BOOST_FOREACH(const CTxIn& txin, tx.vin)
if (!txin.IsFinal())
{
printf("non-final txin\n");
return false;
}
return true;
}