Address review feedback

This commit is contained in:
deadmanoz
2025-07-15 08:48:39 -07:00
parent 5de9757d46
commit 94d4b05c29
4 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -43,10 +43,10 @@ pub struct Parser {
}
impl Parser {
pub fn new(blocks_dir: PathBuf, brk_dir: PathBuf, rpc: &'static bitcoincore_rpc::Client) -> Self {
pub fn new(blocks_dir: PathBuf, outputs_dir: PathBuf, rpc: &'static bitcoincore_rpc::Client) -> Self {
Self {
blocks_dir,
outputs_dir: brk_dir,
outputs_dir: outputs_dir,
rpc
}
}