diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-20 20:54:27 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-20 20:54:27 +0200 |
commit | 380222411038cb4f74cbb109984c4b855b4799f6 (patch) | |
tree | 9f5aa1fbeb733724781ed219d922a9fe9746b6fa /src/miner.cpp | |
parent | 9b6d4c5cdc1ad7b12b8b7ba05125dad9ba2d396e (diff) |
Remove all other print() methods
All unused.
Diffstat (limited to 'src/miner.cpp')
-rw-r--r-- | src/miner.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index 13aa6671c9..06acff1c33 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -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; |