]> Git Repo - VerusCoin.git/blobdiff - src/txdb.cpp
Remove whitespaces before double colon in errors and logs
[VerusCoin.git] / src / txdb.cpp
index f9326e5e2ea12864bb708242dc19a3087adf080c..da271bd5d1a11c95a16d7139a0241ff738b78dba 100644 (file)
@@ -141,7 +141,7 @@ bool CCoinsViewDB::GetStats(CCoinsStats &stats) const {
             }
             pcursor->Next();
         } catch (const std::exception& e) {
-            return error("%s : Deserialize or I/O error - %s", __func__, e.what());
+            return error("%s: Deserialize or I/O error - %s", __func__, e.what());
         }
     }
     stats.nHeight = mapBlockIndex.find(GetBestBlock())->second->nHeight;
@@ -223,14 +223,14 @@ bool CBlockTreeDB::LoadBlockIndexGuts()
                 pindexNew->nTx            = diskindex.nTx;
 
                 if (!CheckProofOfWork(pindexNew->GetBlockHash(), pindexNew->nBits))
-                    return error("LoadBlockIndex() : CheckProofOfWork failed: %s", pindexNew->ToString());
+                    return error("LoadBlockIndex(): CheckProofOfWork failed: %s", pindexNew->ToString());
 
                 pcursor->Next();
             } else {
                 break; // if shutdown requested or finished loading block index
             }
         } catch (const std::exception& e) {
-            return error("%s : Deserialize or I/O error - %s", __func__, e.what());
+            return error("%s: Deserialize or I/O error - %s", __func__, e.what());
         }
     }
 
This page took 0.021702 seconds and 4 git commands to generate.