cli: config changes

This commit is contained in:
nym21
2025-07-26 00:46:35 +02:00
parent ed70ad7378
commit 241b9312b7
2 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ pub fn run() -> color_eyre::Result<()> {
let format = config.format();
let mut indexer = Indexer::forced_import(&config.outputsdir())?;
let mut indexer = Indexer::forced_import(&config.brkdir())?;
let wait_for_synced_node = |rpc_client: &bitcoincore_rpc::Client| -> color_eyre::Result<()> {
let is_synced = || -> color_eyre::Result<bool> {
@@ -37,7 +37,7 @@ pub fn run() -> color_eyre::Result<()> {
};
let mut computer = Computer::forced_import(
&config.outputsdir(),
&config.brkdir(),
&indexer,
config.computation(),
config.fetcher(),