Skip to content

Commit

Permalink
Fix build error (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
rimbi authored and ahmadkaouk committed Dec 11, 2023
1 parent e15a1f9 commit 052d9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substrate/bin/node/cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ pub fn run() -> Result<()> {
runner.async_run(|config| {
let PartialComponents { task_manager, backend, .. } =
service::new_partial(&config)?;
Ok((cmd.run(backend), task_manager))
Ok((cmd.run(backend, config.chain_spec), task_manager))
})
},
}
Expand Down

0 comments on commit 052d9df

Please sign in to comment.