moved nym-gateway-probe to monorepo and updated rust-edition to 2024 (#6094)

dont build netstack in CI

additional rust 2024 fixes

fixes

removed temp.rs

first round of cleanup

removed duplicated NS types

moved gateway probe to the monorepo
This commit is contained in:
Jędrzej Stuczyński
2025-10-08 16:17:43 +01:00
committed by GitHub
parent 18ff09608c
commit 827c13b69e
455 changed files with 7108 additions and 1689 deletions
+6 -4
View File
@@ -3,11 +3,11 @@
use crate::cli::env::vars::*;
use crate::monitor::SignersMonitor;
use anyhow::{bail, Context};
use anyhow::{Context, bail};
use clap::ArgGroup;
use nym_network_defaults::{setup_env, NymNetworkDetails};
use nym_validator_client::nyxd::AccountId;
use nym_network_defaults::{NymNetworkDetails, setup_env};
use nym_validator_client::QueryHttpRpcNyxdClient;
use nym_validator_client::nyxd::AccountId;
use std::time::Duration;
use url::Url;
@@ -50,7 +50,9 @@ impl NyxdConnectionArgs {
if let Some(known_network_name) = &self.known_network_name {
match known_network_name.as_str() {
"mainnet" => return Ok(NymNetworkDetails::new_mainnet()),
other => bail!("{other} is not a known network name - please use another method of setting up chain connection"),
other => bail!(
"{other} is not a known network name - please use another method of setting up chain connection"
),
}
}