Skip to content

Commit

Permalink
[Trivial] Fix LogPrintf arguments in WipeAccChecksums
Browse files Browse the repository at this point in the history
Simple fix of missing argument type specifiers in LogPrintf string.
  • Loading branch information
Fuzzbawls committed Jan 5, 2022
1 parent 017953e commit 5e36a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/txdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ void CZerocoinDB::WipeAccChecksums()
}
}

LogPrintf("%s: % entries to delete. % entries deleted\n", __func__, setDelete.size(), deleted);
LogPrintf("%s: %d entries to delete. %d entries deleted\n", __func__, setDelete.size(), deleted);
}

namespace {
Expand Down

0 comments on commit 5e36a6e

Please sign in to comment.