mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
Remove DoS penalty for SigOpCount or immature transactions
This commit is contained in:
parent
9a1ce86969
commit
a8c108bca1
@ -364,7 +364,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi
|
|||||||
// 34 bytes because a TxOut is:
|
// 34 bytes because a TxOut is:
|
||||||
// 20-byte address + 8 byte bitcoin amount + 5 bytes of ops + 1 byte script length
|
// 20-byte address + 8 byte bitcoin amount + 5 bytes of ops + 1 byte script length
|
||||||
if (GetSigOpCount() > nSize / 34 || nSize < 100)
|
if (GetSigOpCount() > nSize / 34 || nSize < 100)
|
||||||
return DoS(10, error("AcceptToMemoryPool() : transaction with out-of-bounds SigOpCount"));
|
return error("AcceptToMemoryPool() : transaction with out-of-bounds SigOpCount");
|
||||||
|
|
||||||
// Rather not work on nonstandard transactions (unless -testnet)
|
// Rather not work on nonstandard transactions (unless -testnet)
|
||||||
if (!fTestNet && !IsStandard())
|
if (!fTestNet && !IsStandard())
|
||||||
@ -864,7 +864,7 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, map<uint256, CTxIndex>& mapTestPoo
|
|||||||
if (txPrev.IsCoinBase())
|
if (txPrev.IsCoinBase())
|
||||||
for (CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
|
for (CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
|
||||||
if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
|
if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
|
||||||
return DoS(10, error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight));
|
return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);
|
||||||
|
|
||||||
// Skip ECDSA signature verification when connecting blocks (fBlock=true) during initial download
|
// Skip ECDSA signature verification when connecting blocks (fBlock=true) during initial download
|
||||||
// (before the last blockchain checkpoint). This is safe because block merkle hashes are
|
// (before the last blockchain checkpoint). This is safe because block merkle hashes are
|
||||||
|
Loading…
Reference in New Issue
Block a user