]> Git Repo - VerusCoin.git/commitdiff
Skip interest check for AC
authorjl777 <[email protected]>
Sun, 6 May 2018 17:08:56 +0000 (20:08 +0300)
committerjl777 <[email protected]>
Sun, 6 May 2018 17:08:56 +0000 (20:08 +0300)
src/txmempool.cpp

index dd985f500d05962ee47a64b4d171305170f83956..5fa19fb5fa31e193bfe89395a79d329f84728cd8 100644 (file)
@@ -413,7 +413,7 @@ void CTxMemPool::removeExpired(unsigned int nBlockHeight)
     {
         const CTransaction& tx = it->GetTx();
         tipindex = chainActive.Tip();
-        if (IsExpiredTx(tx, nBlockHeight) || (tipindex != 0 && komodo_validate_interest(tx,tipindex->nHeight+1,tipindex->GetMedianTimePast() + 777,0)) < 0)
+        if (IsExpiredTx(tx, nBlockHeight) || (ASSETCHAINS_SYMBOL[0] == 0 && tipindex != 0 && komodo_validate_interest(tx,tipindex->nHeight+1,tipindex->GetMedianTimePast() + 777,0)) < 0)
         {
             transactionsToRemove.push_back(tx);
         }
This page took 0.027114 seconds and 4 git commands to generate.