Accept non-standard transactions on testnet.

This commit is contained in:
Gavin Andresen 2011-04-20 11:20:33 -04:00
parent 72e962cf55
commit 5ec05f0a28
1 changed files with 2 additions and 2 deletions

View File

@ -691,8 +691,8 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi
if (GetSigOpCount() > nSize / 34 || nSize < 100)
return error("AcceptToMemoryPool() : nonstandard transaction");
// Rather not work on nonstandard transactions
if (!IsStandard())
// Rather not work on nonstandard transactions (unless -testnet)
if (!fTestNet && !IsStandard())
return error("AcceptToMemoryPool() : nonstandard transaction type");
// Do we already have it?