Remove commented out debris related to Verus breaking their immutability, sigh

This commit is contained in:
Jonathan "Duke" Leto
2019-08-07 20:32:52 -07:00
parent 5db0aa111d
commit 5da33fe71d
2 changed files with 0 additions and 43 deletions

View File

@@ -572,18 +572,6 @@ extern char ASSETCHAINS_SYMBOL[KOMODO_ASSETCHAIN_MAXLEN];
const CScript &CCoinsViewCache::GetSpendFor(const CCoins *coins, const CTxIn& input)
{
assert(coins);
/*if (coins->nHeight < 6400 && !strcmp(ASSETCHAINS_SYMBOL, "VRSC"))
{
std::string hc = input.prevout.hash.ToString();
if (LaunchMap().lmap.count(hc))
{
CTransactionExceptionData &txData = LaunchMap().lmap[hc];
if ((txData.voutMask & (((uint64_t)1) << (uint64_t)input.prevout.n)) != 0)
{
return txData.scriptPubKey;
}
}
}*/
return coins->vout[input.prevout.n].scriptPubKey;
}