Remove all other print() methods

All unused.
This commit is contained in:
Wladimir J. van der Laan
2014-08-20 20:54:27 +02:00
parent 9b6d4c5cdc
commit 3802224110
10 changed files with 0 additions and 51 deletions

View File

@@ -42,14 +42,6 @@ public:
COrphan(const CTransaction* ptxIn) : ptx(ptxIn), feeRate(0), dPriority(0)
{
}
void print() const
{
LogPrintf("COrphan(hash=%s, dPriority=%.1f, fee=%s)\n",
ptx->GetHash().ToString(), dPriority, feeRate.ToString());
BOOST_FOREACH(uint256 hash, setDependsOn)
LogPrintf(" setDependsOn %s\n", hash.ToString());
}
};
uint64_t nLastBlockTx = 0;