not something that may block this PR but I see other error messages in bitcoin-chainstate.cpp
maybe can be addressed in a followup PR
0grep -nri "std::cerr" ./src/bitcoin-chainstate.cpp
1
2(manually removed the ones that are already in this PR)
3
453: std::cerr
5 54 << "Usage: " << argv[0] << " DATADIR" << std::endl
6 55 << "Display DATADIR information, and process hex-encoded blocks on standard input." << std::endl
7 56 << std::endl
8 57 << "IMPORTANT: THIS EXECUTABLE IS EXPERIMENTAL, FOR TESTING ONLY, AND EXPECTED TO" << std::endl
9 58 << " BREAK IN FUTURE VERSIONS. DO NOT USE ON YOUR ACTUAL DATADIR." << std::endl;
10 59 return 1;
11 60 }
12100: std::cerr << "Error flushing block data to disk: " << message.original << std::endl;
13104: std::cerr << "Error: " << message.original << std::endl;
14134: std::cerr << "Failed to load Chain state from your datadir." << std::endl;
15139: std::cerr << "Failed to verify loaded Chain state from your datadir." << std::endl;
16147: std::cerr << "Failed to connect best block (" << state.ToString() << ")" << std::endl;
17222: std::cerr << "inconclusive" << std::endl;
18231: std::cerr << "the block header may be on a too-little-work chain" << std::endl;
19234: std::cerr << "invalid by consensus rules (excluding any below reasons)" << std::endl;
20237: std::cerr << "this block was cached as being invalid and we didn't store the reason why" << std::endl;
21240: std::cerr << "invalid proof of work or time too old" << std::endl;
22243: std::cerr << "the block's data didn't match the data committed to by the PoW" << std::endl;
23246: std::cerr << "We don't have the previous block the checked one is built on" << std::endl;
24249: std::cerr << "A block this one builds on is invalid" << std::endl;
25252: std::cerr << "block timestamp was > 2 hours in the future (or our clock is bad)" << std::endl;