Skip to content

Commit

Permalink
Fix missing space in error log
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Nov 25, 2024
1 parent 4ed64b9 commit 46ed466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sc-consensus-subspace/src/archiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ where
.expect("just checked above; qed");
let Some(best_block_data) = client.block(best_block_to_archive_hash)? else {
let error = format!(
"Missing data for mapping block {best_block_to_archive} hash {best_block_to_archive_hash},\
"Missing data for mapping block {best_block_to_archive} hash {best_block_to_archive_hash}, \
try a higher block number, or wipe your node and restart with `--sync full`"
);
return Err(sp_blockchain::Error::Application(error.into()));
Expand Down

0 comments on commit 46ed466

Please sign in to comment.