Skip to content

Commit

Permalink
Update Substrate reference (paritytech#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
svyatonik authored and serban300 committed Apr 9, 2024
1 parent b1613a8 commit 9af9b3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bridges/bin/millau/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub fn run() -> sc_cli::Result<()> {
Ok(())
}
}
Some(Subcommand::Key(cmd)) => cmd.run(),
Some(Subcommand::Key(cmd)) => cmd.run(&cli),
Some(Subcommand::Sign(cmd)) => cmd.run(),
Some(Subcommand::Verify(cmd)) => cmd.run(),
Some(Subcommand::Vanity(cmd)) => cmd.run(),
Expand Down
2 changes: 1 addition & 1 deletion bridges/bin/rialto/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub fn run() -> sc_cli::Result<()> {
Ok(())
}
}
Some(Subcommand::Key(cmd)) => cmd.run(),
Some(Subcommand::Key(cmd)) => cmd.run(&cli),
Some(Subcommand::Sign(cmd)) => cmd.run(),
Some(Subcommand::Verify(cmd)) => cmd.run(),
Some(Subcommand::Vanity(cmd)) => cmd.run(),
Expand Down

0 comments on commit 9af9b3a

Please sign in to comment.