Replace some function names with __func__
This commit is contained in:
parent
ed6d1a2c7b
commit
7b2bb96271
1 changed files with 2 additions and 2 deletions
|
@ -2818,11 +2818,11 @@ bool static LoadBlockIndexDB()
|
|||
// Load block file info
|
||||
pblocktree->ReadLastBlockFile(nLastBlockFile);
|
||||
vinfoBlockFile.resize(nLastBlockFile + 1);
|
||||
LogPrintf("LoadBlockIndexDB(): last block file = %i\n", nLastBlockFile);
|
||||
LogPrintf("%s: last block file = %i\n", __func__, nLastBlockFile);
|
||||
for (int nFile = 0; nFile <= nLastBlockFile; nFile++) {
|
||||
pblocktree->ReadBlockFileInfo(nFile, vinfoBlockFile[nFile]);
|
||||
}
|
||||
LogPrintf("LoadBlockIndexDB(): last block file info: %s\n", vinfoBlockFile[nLastBlockFile].ToString());
|
||||
LogPrintf("%s: last block file info: %s\n", __func__, vinfoBlockFile[nLastBlockFile].ToString());
|
||||
for (int nFile = nLastBlockFile + 1; true; nFile++) {
|
||||
CBlockFileInfo info;
|
||||
if (pblocktree->ReadBlockFileInfo(nFile, info)) {
|
||||
|
|
Loading…
Reference in a new issue