mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
refactor: Make error() return type void
This is needed for the next commit to compile.
This commit is contained in:
parent
fa1d624348
commit
fa808fb749
2 changed files with 3 additions and 3 deletions
|
@ -264,10 +264,9 @@ static inline void LogPrintf_(const std::string& logging_function, const std::st
|
|||
#define LogPrint(category, ...) LogDebug(category, __VA_ARGS__)
|
||||
|
||||
template <typename... Args>
|
||||
bool error(const char* fmt, const Args&... args)
|
||||
void error(const char* fmt, const Args&... args)
|
||||
{
|
||||
LogPrintf("ERROR: %s\n", tfm::format(fmt, args...));
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif // BITCOIN_LOGGING_H
|
||||
|
|
|
@ -1102,9 +1102,10 @@ bool BlockManager::ReadRawBlockFromDisk(std::vector<uint8_t>& block, const FlatF
|
|||
filein >> blk_start >> blk_size;
|
||||
|
||||
if (blk_start != GetParams().MessageStart()) {
|
||||
return error("%s: Block magic mismatch for %s: %s versus expected %s", __func__, pos.ToString(),
|
||||
error("%s: Block magic mismatch for %s: %s versus expected %s", __func__, pos.ToString(),
|
||||
HexStr(blk_start),
|
||||
HexStr(GetParams().MessageStart()));
|
||||
return false;
|
||||
}
|
||||
|
||||
if (blk_size > MAX_SIZE) {
|
||||
|
|
Loading…
Add table
Reference in a new issue