Skip to content

Commit

Permalink
Merge branch 'master' of github.com:calimero-network/core into feat--…
Browse files Browse the repository at this point in the history
…add-bootstrap-to-meroctl
  • Loading branch information
MatejVukosav committed Dec 20, 2024
2 parents 682d1e9 + bb54d55 commit 3794bd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions crates/meroctl/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ pub enum SubCommands {
App(AppCommand),
Context(ContextCommand),
Identity(IdentityCommand),
JsonRpc(CallCommand),
Proxy(ProxyCommand),
Call(CallCommand),
Bootstrap(BootstrapCommand),
Expand Down Expand Up @@ -104,7 +103,6 @@ impl RootCommand {
SubCommands::App(application) => application.run(&environment).await,
SubCommands::Context(context) => context.run(&environment).await,
SubCommands::Identity(identity) => identity.run(&environment).await,
SubCommands::JsonRpc(jsonrpc) => jsonrpc.run(&environment).await,
SubCommands::Proxy(proxy) => proxy.run(&environment).await,
SubCommands::Call(call) => call.run(&environment).await,
SubCommands::Bootstrap(call) => call.run(&environment).await,
Expand Down
3 changes: 2 additions & 1 deletion crates/meroctl/src/cli/bootstrap/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ impl StartBootstrapCommand {
) -> EyreResult<()> {
println!(
"Inviting node {:?} to context {:?}",
invitee_environment.args.node_name, context_id
invitee_environment.args.node_name,
context_id.to_string()
);

let invite_command = InviteCommand {
Expand Down

0 comments on commit 3794bd8

Please sign in to comment.