Skip to content

Commit

Permalink
Add a new line to print
Browse files Browse the repository at this point in the history
  • Loading branch information
Chethan Krishna committed Aug 17, 2016
1 parent c8458bf commit 36f5ee5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2655,7 +2655,7 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin
// retrieve logical timestamp of the previous block
if (pindex->pprev)
if (!pblocktree->ReadTimestampBlockIndex(pindex->pprev->GetBlockHash(), prevLogicalTS))
LogPrintf("%s: Failed to read previous block's logical timestamp", __func__);
LogPrintf("%s: Failed to read previous block's logical timestamp\n", __func__);

if (logicalTS <= prevLogicalTS) {
logicalTS = prevLogicalTS + 1;
Expand Down
1 change: 0 additions & 1 deletion src/rpcblockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ UniValue getrawmempool(const UniValue& params, bool fHelp)
return mempoolToJSON(fVerbose);
}


UniValue getblockhashes(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2)
Expand Down

0 comments on commit 36f5ee5

Please sign in to comment.