diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-04-02 08:28:59 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-02 08:47:02 +0200 |
| commit | 1a5aaabb8a3d67a039ad120bb5d8d418467cac4e (patch) | |
| tree | 4090f9ae3b6e908b2066ebb1cc7c1cffb51ca734 /src/txdb.cpp | |
| parent | Merge #10136: build: Disable Wshadow warning (diff) | |
| parent | Change LogAcceptCategory to use uint32_t rather than sets of strings. (diff) | |
| download | discoin-1a5aaabb8a3d67a039ad120bb5d8d418467cac4e.tar.xz discoin-1a5aaabb8a3d67a039ad120bb5d8d418467cac4e.zip | |
Merge #9424: Change LogAcceptCategory to use uint32_t rather than sets of strings.
6b3bb3d Change LogAcceptCategory to use uint32_t rather than sets of strings. (Gregory Maxwell)
Tree-SHA512: ebb5bcf9a7d00a32dd1390b727ff4d29330a038423611da01268d8e1d2c0229e52a1098e751d4e6db73ef4ae862e1e96d38249883fcaf12b68f55ebb01035b34
Diffstat (limited to 'src/txdb.cpp')
| -rw-r--r-- | src/txdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp index 1a30bb58a..a3889fdf7 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -63,7 +63,7 @@ bool CCoinsViewDB::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { if (!hashBlock.IsNull()) batch.Write(DB_BEST_BLOCK, hashBlock); - LogPrint("coindb", "Committing %u changed transactions (out of %u) to coin database...\n", (unsigned int)changed, (unsigned int)count); + LogPrint(BCLog::COINDB, "Committing %u changed transactions (out of %u) to coin database...\n", (unsigned int)changed, (unsigned int)count); return db.WriteBatch(batch); } |