Skip to content

Commit

Permalink
Suggest how to fix zebrad.toml when Zebra cannot parse it
Browse files Browse the repository at this point in the history
  • Loading branch information
upbqdn committed Jun 27, 2022
1 parent 6591a8a commit b30b2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zebrad/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ impl Application for ZebradApp {
Some(path) => match self.load_config(&path) {
Ok(config) => config,
Err(e) => {
status_err!("Zebra could not parse the provided config file. This might mean you are using a deprecated format of the file.");
status_err!("Zebra could not parse the provided config file. This might mean you are using a deprecated format of the file. You can generate a valid config by running \"zebrad generate\", and diff it against yours to examine any format inconsistencies.");
return Err(e);
}
},
Expand Down

0 comments on commit b30b2ad

Please sign in to comment.