mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(db): Dont compress DupSort SubKey (#594)
* bug(db): Dont compress DupSort SubKey * unwrap or default config, Added notes * fmt empty lines
This commit is contained in:
@ -84,7 +84,7 @@ impl Command {
|
||||
/// Execute `node` command
|
||||
// TODO: RPC
|
||||
pub async fn execute(&self) -> eyre::Result<()> {
|
||||
let config: Config = confy::load_path(&self.config)?;
|
||||
let config: Config = confy::load_path(&self.config).unwrap_or_default();
|
||||
info!("reth {} starting", crate_version!());
|
||||
|
||||
info!("Opening database at {}", &self.db);
|
||||
|
||||
Reference in New Issue
Block a user