diff options
author | Nicolas Benoit <nbenoit@tuxfamily.org> | 2015-02-25 18:40:32 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-04-20 13:29:21 +0200 |
commit | 52070c87fda663e1f074998fd95fa1dafff667f9 (patch) | |
tree | d1080604da54a25ae6e5f91e88212a38924025dd /src/main.cpp | |
parent | 30c1db1c612ef2622d4eb72f0b7f12f311cac7cd (diff) |
Removed '()' where used without contents inside
This additional patch removes '()' from current function name in LogPrintf output.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 75738dace7..c6a936c5cc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2936,7 +2936,7 @@ bool static LoadBlockIndexDB() // Check whether we have a transaction index pblocktree->ReadFlag("txindex", fTxIndex); - LogPrintf("%s(): transaction index %s\n", __func__, fTxIndex ? "enabled" : "disabled"); + LogPrintf("%s: transaction index %s\n", __func__, fTxIndex ? "enabled" : "disabled"); // Load pointer to end of best chain BlockMap::iterator it = mapBlockIndex.find(pcoinsTip->GetBestBlock()); @@ -2946,7 +2946,7 @@ bool static LoadBlockIndexDB() PruneBlockIndexCandidates(); - LogPrintf("%s(): hashBestChain=%s height=%d date=%s progress=%f\n", __func__, + LogPrintf("%s: hashBestChain=%s height=%d date=%s progress=%f\n", __func__, chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()), Checkpoints::GuessVerificationProgress(chainActive.Tip())); |