Skip to content

Commit

Permalink
Fix generate_db_names ret value
Browse files Browse the repository at this point in the history
  • Loading branch information
matias-gonz committed Oct 3, 2024
1 parent edc0078 commit 2f23e46
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ pub struct GenesisArgs {

impl GenesisArgs {
pub fn fill_values_with_prompt(self, config: &ChainConfig) -> GenesisArgsFinal {
let DBNames {
server_name,
prover_name: _,
} = generate_db_names(config);
let DBNames { server_name, .. } = generate_db_names(config);
let chain_name = config.name.clone();
if self.use_default {
GenesisArgsFinal {
Expand Down

0 comments on commit 2f23e46

Please sign in to comment.