Skip to content
Snippets Groups Projects
Commit 99c93ea3 authored by Éloïs's avatar Éloïs
Browse files

fix(indexer): profile path must be provided to modules

parent ff2a6044
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ impl DuniterServer { ...@@ -39,7 +39,7 @@ impl DuniterServer {
Arc::new(self.conf.clone()), Arc::new(self.conf.clone()),
self.currency_params, self.currency_params,
&self.dbs_pool, &self.dbs_pool,
None, self.profile_path_opt.clone(),
) )
} }
pub fn apply_chunk_of_blocks(&mut self, blocks: Vec<DubpBlockV10Stringified>) -> KvResult<()> { pub fn apply_chunk_of_blocks(&mut self, blocks: Vec<DubpBlockV10Stringified>) -> KvResult<()> {
...@@ -70,7 +70,7 @@ impl DuniterServer { ...@@ -70,7 +70,7 @@ impl DuniterServer {
Arc::new(self.conf.clone()), Arc::new(self.conf.clone()),
self.currency_params, self.currency_params,
&self.dbs_pool, &self.dbs_pool,
None, self.profile_path_opt.clone(),
) )
} }
pub fn revert_block(&mut self, block: DubpBlockV10Stringified) -> KvResult<()> { pub fn revert_block(&mut self, block: DubpBlockV10Stringified) -> KvResult<()> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment