We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5028f90 commit 6b34ba4Copy full SHA for 6b34ba4
testnet/stacks-node/src/config.rs
@@ -710,8 +710,8 @@ impl Config {
710
for (i, (epoch_id, start_height)) in matched_epochs.iter().enumerate() {
711
if epoch_id != &out_epochs[i].epoch_id {
712
return Err(
713
- format!("Unmatched epochs in configuration and node implementation. Implemented = {epoch_id}, Configured = {}",
714
- &out_epochs[i].epoch_id));
+ format!("Unmatched epochs in configuration and node implementation. Implemented = {epoch_id}, Configured = {}",
+ &out_epochs[i].epoch_id));
715
}
716
// end_height = next epoch's start height || i64::max if last epoch
717
let end_height = if i + 1 < matched_epochs.len() {
0 commit comments