typo
This commit is contained in:
@@ -19,10 +19,10 @@ pub struct MixnetOperatorsGateway {
|
||||
pub enum MixnetOperatorsGatewayCommands {
|
||||
/// Bond to a gateway
|
||||
Bond(bond_gateway::Args),
|
||||
/// Unbound from a gateway
|
||||
Unbound(unbond_gateway::Args),
|
||||
/// Unbond from a gateway
|
||||
Unbond(unbond_gateway::Args),
|
||||
/// Bond to a gateway with locked tokens
|
||||
VestingBond(vesting_bond_gateway::Args),
|
||||
/// Unbound from a gateway (when originally using locked tokens)
|
||||
VestingUnbound(vesting_unbond_gateway::Args),
|
||||
/// Unbond from a gateway (when originally using locked tokens)
|
||||
VestingUnbond(vesting_unbond_gateway::Args),
|
||||
}
|
||||
|
||||
@@ -28,10 +28,10 @@ pub enum MixnetOperatorsMixnodeCommands {
|
||||
Settings(settings::MixnetOperatorsMixnodeSettings),
|
||||
/// Bond to a mixnode
|
||||
Bond(bond_mixnode::Args),
|
||||
/// Unbound from a mixnode
|
||||
Unbound(unbond_mixnode::Args),
|
||||
/// Unbond from a mixnode
|
||||
Unbond(unbond_mixnode::Args),
|
||||
/// Bond to a mixnode with locked tokens
|
||||
BondVesting(vesting_bond_mixnode::Args),
|
||||
/// Unbound from a mixnode (when originally using locked tokens)
|
||||
UnboundVesting(vesting_unbond_mixnode::Args),
|
||||
/// Unbond from a mixnode (when originally using locked tokens)
|
||||
UnbondVesting(vesting_unbond_mixnode::Args),
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ pub(crate) async fn execute(
|
||||
nym_cli_commands::validator::mixnet::operators::gateway::MixnetOperatorsGatewayCommands::Bond(args) => {
|
||||
nym_cli_commands::validator::mixnet::operators::gateway::bond_gateway::bond_gateway(args, create_signing_client(global_args, network_details)?).await
|
||||
},
|
||||
nym_cli_commands::validator::mixnet::operators::gateway::MixnetOperatorsGatewayCommands::Unbound(_args) => {
|
||||
nym_cli_commands::validator::mixnet::operators::gateway::MixnetOperatorsGatewayCommands::Unbond(_args) => {
|
||||
nym_cli_commands::validator::mixnet::operators::gateway::unbond_gateway::unbond_gateway(create_signing_client(global_args, network_details)?).await
|
||||
},
|
||||
_ => unreachable!(),
|
||||
|
||||
@@ -26,7 +26,7 @@ pub(crate) async fn execute(
|
||||
nym_cli_commands::validator::mixnet::operators::mixnode::MixnetOperatorsMixnodeCommands::Bond(args) => {
|
||||
nym_cli_commands::validator::mixnet::operators::mixnode::bond_mixnode::bond_mixnode(args, create_signing_client(global_args, network_details)?).await
|
||||
}
|
||||
nym_cli_commands::validator::mixnet::operators::mixnode::MixnetOperatorsMixnodeCommands::Unbound(args) => {
|
||||
nym_cli_commands::validator::mixnet::operators::mixnode::MixnetOperatorsMixnodeCommands::Unbond(args) => {
|
||||
nym_cli_commands::validator::mixnet::operators::mixnode::unbond_mixnode::unbond_mixnode(args, create_signing_client(global_args, network_details)?).await
|
||||
}
|
||||
_ => unreachable!(),
|
||||
|
||||
@@ -3803,8 +3803,8 @@ const completion: Fig.Spec = {
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "unbound",
|
||||
description: "Unbound from a mixnode",
|
||||
name: "unbond",
|
||||
description: "Unbond from a mixnode",
|
||||
options: [
|
||||
{
|
||||
name: "--mnemonic",
|
||||
@@ -3994,8 +3994,8 @@ const completion: Fig.Spec = {
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "unbound-vesting",
|
||||
description: "Unbound from a mixnode (when originally using locked tokens)",
|
||||
name: "unbond-vesting",
|
||||
description: "Unbond from a mixnode (when originally using locked tokens)",
|
||||
options: [
|
||||
{
|
||||
name: "--gas",
|
||||
@@ -4296,8 +4296,8 @@ const completion: Fig.Spec = {
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "unbound",
|
||||
description: "Unbound from a gateway",
|
||||
name: "unbond",
|
||||
description: "Unbond from a gateway",
|
||||
options: [
|
||||
{
|
||||
name: "--mnemonic",
|
||||
@@ -4473,8 +4473,8 @@ const completion: Fig.Spec = {
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "vesting-unbound",
|
||||
description: "Unbound from a gateway (when originally using locked tokens)",
|
||||
name: "vesting-unbond",
|
||||
description: "Unbond from a gateway (when originally using locked tokens)",
|
||||
options: [
|
||||
{
|
||||
name: "--mnemonic",
|
||||
|
||||
Reference in New Issue
Block a user