@@ -3102,7 +3102,7 @@ bool Chainstate::ActivateBestChain(BlockValidationState& state, std::shared_ptr<
3102
3102
// Belt-and-suspenders check that we aren't attempting to advance the background
3103
3103
// chainstate past the snapshot base block.
3104
3104
if (WITH_LOCK (::cs_main, return m_disabled)) {
3105
- LogPrintf (" m_disabled is set - this chainstate should not be in operation. " /* Continued */
3105
+ LogPrintf (" m_disabled is set - this chainstate should not be in operation. "
3106
3106
" Please report this as a bug. %s\n " , PACKAGE_BUGREPORT);
3107
3107
return false ;
3108
3108
}
@@ -5226,7 +5226,7 @@ bool ChainstateManager::PopulateAndValidateSnapshot(
5226
5226
auto maybe_au_data = ExpectedAssumeutxo (base_height, GetParams ());
5227
5227
5228
5228
if (!maybe_au_data) {
5229
- LogPrintf (" [snapshot] assumeutxo height in snapshot metadata not recognized " /* Continued */
5229
+ LogPrintf (" [snapshot] assumeutxo height in snapshot metadata not recognized "
5230
5230
" (%d) - refusing to load snapshot\n " , base_height);
5231
5231
return false ;
5232
5232
}
@@ -5473,7 +5473,7 @@ SnapshotCompletionResult ChainstateManager::MaybeCompleteSnapshotValidation()
5473
5473
};
5474
5474
5475
5475
if (index_new.GetBlockHash () != snapshot_blockhash) {
5476
- LogPrintf (" [snapshot] supposed base block %s does not match the " /* Continued */
5476
+ LogPrintf (" [snapshot] supposed base block %s does not match the "
5477
5477
" snapshot base block %s (height %d). Snapshot is not valid." ,
5478
5478
index_new.ToString (), snapshot_blockhash.ToString (), snapshot_base_height);
5479
5479
handle_invalid_snapshot ();
@@ -5494,15 +5494,15 @@ SnapshotCompletionResult ChainstateManager::MaybeCompleteSnapshotValidation()
5494
5494
5495
5495
auto maybe_au_data = ExpectedAssumeutxo (curr_height, m_options.chainparams );
5496
5496
if (!maybe_au_data) {
5497
- LogPrintf (" [snapshot] assumeutxo data not found for height " /* Continued */
5497
+ LogPrintf (" [snapshot] assumeutxo data not found for height "
5498
5498
" (%d) - refusing to validate snapshot\n " , curr_height);
5499
5499
handle_invalid_snapshot ();
5500
5500
return SnapshotCompletionResult::MISSING_CHAINPARAMS;
5501
5501
}
5502
5502
5503
5503
const AssumeutxoData& au_data = *maybe_au_data;
5504
5504
std::optional<CCoinsStats> maybe_ibd_stats;
5505
- LogPrintf (" [snapshot] computing UTXO stats for background chainstate to validate " /* Continued */
5505
+ LogPrintf (" [snapshot] computing UTXO stats for background chainstate to validate "
5506
5506
" snapshot - this could take a few minutes\n " );
5507
5507
try {
5508
5508
maybe_ibd_stats = ComputeUTXOStats (
@@ -5740,7 +5740,7 @@ bool ChainstateManager::ValidatedSnapshotCleanup()
5740
5740
// is in-memory, in which case we can't do on-disk cleanup. You'd better be
5741
5741
// in a unittest!
5742
5742
if (!ibd_chainstate_path_maybe || !snapshot_chainstate_path_maybe) {
5743
- LogPrintf (" [snapshot] snapshot chainstate cleanup cannot happen with " /* Continued */
5743
+ LogPrintf (" [snapshot] snapshot chainstate cleanup cannot happen with "
5744
5744
" in-memory chainstates. You are testing, right?\n " );
5745
5745
return false ;
5746
5746
}
@@ -5783,7 +5783,7 @@ bool ChainstateManager::ValidatedSnapshotCleanup()
5783
5783
throw ;
5784
5784
}
5785
5785
5786
- LogPrintf (" [snapshot] moving snapshot chainstate (%s) to " /* Continued */
5786
+ LogPrintf (" [snapshot] moving snapshot chainstate (%s) to "
5787
5787
" default chainstate directory (%s)\n " ,
5788
5788
fs::PathToString (snapshot_chainstate_path), fs::PathToString (ibd_chainstate_path));
5789
5789
@@ -5797,7 +5797,7 @@ bool ChainstateManager::ValidatedSnapshotCleanup()
5797
5797
if (!DeleteCoinsDBFromDisk (tmp_old, /* is_snapshot=*/ false )) {
5798
5798
// No need to FatalError because once the unneeded bg chainstate data is
5799
5799
// moved, it will not interfere with subsequent initialization.
5800
- LogPrintf (" Deletion of %s failed. Please remove it manually, as the " /* Continued */
5800
+ LogPrintf (" Deletion of %s failed. Please remove it manually, as the "
5801
5801
" directory is now unnecessary.\n " ,
5802
5802
fs::PathToString (tmp_old));
5803
5803
} else {
0 commit comments