32 lines
813 B
Rust
32 lines
813 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use crate::config::Config;
|
|
use crate::node::MixNode;
|
|
use crate::OutputFormat;
|
|
use clap::Args;
|
|
use config::NymConfig;
|
|
|
|
#[derive(Args)]
|
|
pub(crate) struct NodeDetails {
|
|
/// The id of the mixnode you want to show details for
|
|
#[clap(long)]
|
|
id: String,
|
|
}
|
|
|
|
pub(crate) fn execute(args: &NodeDetails, output: OutputFormat) {
|
|
let config = match Config::load_from_file(&args.id) {
|
|
Ok(cfg) => cfg,
|
|
Err(err) => {
|
|
error!(
|
|
"Failed to load config for {}. Are you sure you have run `init` before? (Error was: {})",
|
|
args.id,
|
|
err,
|
|
);
|
|
return;
|
|
}
|
|
};
|
|
|
|
MixNode::new(config).print_node_details(output)
|
|
}
|