chore: regenerate umbrella crate, fix feature propagation

This commit is contained in:
2025-12-16 11:28:32 +03:00
parent dd6d48f528
commit 620b0e3aa0
1358 changed files with 9464 additions and 7656 deletions
@@ -19,7 +19,7 @@
//! Implementation of the `insert` subcommand
use crate::{
utils, with_crypto_scheme, CryptoScheme, Error, KeystoreParams, SharedParams, BizinikiwiCli,
utils, with_crypto_scheme, BizinikiwiCli, CryptoScheme, Error, KeystoreParams, SharedParams,
};
use clap::Parser;
use pezsc_keystore::LocalKeystore;
+1 -1
View File
@@ -22,7 +22,7 @@ use super::{
generate::GenerateCmd, generate_node_key::GenerateNodeKeyCmd, insert_key::InsertKeyCmd,
inspect_key::InspectKeyCmd, inspect_node_key::InspectNodeKeyCmd,
};
use crate::{Error, BizinikiwiCli};
use crate::{BizinikiwiCli, Error};
/// Key utilities for the cli.
#[derive(Debug, clap::Subcommand)]
@@ -25,7 +25,6 @@ use crate::{
CliConfiguration, PrometheusParams, RpcParams, RuntimeParams, TelemetryParams,
};
use clap::Parser;
use regex::Regex;
use pezsc_service::{
config::{
BasePath, IpNetwork, PrometheusConfig, RpcBatchRequestConfig, TransactionPoolOptions,
@@ -33,6 +32,7 @@ use pezsc_service::{
ChainSpec, Role,
};
use pezsc_telemetry::TelemetryEndpoints;
use regex::Regex;
use std::num::NonZeroU32;
/// The `run` command used to run a node.
+1 -1
View File
@@ -21,7 +21,6 @@ use crate::{
error::{self, Error},
OutputType,
};
use serde_json::json;
use pezsp_core::{
crypto::{
unwrap_or_default_ss58_version, ExposeSecret, SecretString, Ss58AddressFormat, Ss58Codec,
@@ -31,6 +30,7 @@ use pezsp_core::{
Pair,
};
use pezsp_runtime::{traits::IdentifyAccount, MultiSigner};
use serde_json::json;
use std::path::PathBuf;
/// Public key type for Runtime
+1 -1
View File
@@ -22,9 +22,9 @@ use crate::{
error, utils, with_crypto_scheme, CryptoSchemeFlag, NetworkSchemeFlag, OutputTypeFlag,
};
use clap::Parser;
use rand::{rngs::OsRng, RngCore};
use pezsp_core::crypto::{unwrap_or_default_ss58_version, Ss58AddressFormat, Ss58Codec};
use pezsp_runtime::traits::IdentifyAccount;
use rand::{rngs::OsRng, RngCore};
use utils::print_from_uri;
/// The `vanity` command
+3 -3
View File
@@ -19,9 +19,9 @@
//! Configuration trait for a CLI based on bizinikiwi
use crate::{
arg_enums::Database, error::Result, DatabaseParams, ImportParams, KeystoreParams,
NetworkParams, NodeKeyParams, OffchainWorkerParams, PruningParams, RpcEndpoint, SharedParams,
BizinikiwiCli,
arg_enums::Database, error::Result, BizinikiwiCli, DatabaseParams, ImportParams,
KeystoreParams, NetworkParams, NodeKeyParams, OffchainWorkerParams, PruningParams, RpcEndpoint,
SharedParams,
};
use log::warn;
use names::{Generator, Name};
+2 -2
View File
@@ -42,11 +42,11 @@ pub use commands::*;
pub use config::*;
pub use error::*;
pub use params::*;
pub use runner::*;
pub use pezsc_service::{ChainSpec, Role};
pub use pezsc_tracing::logging::LoggerBuilder;
pub use signals::Signals;
pub use pezsp_version::RuntimeVersion;
pub use runner::*;
pub use signals::Signals;
/// Bizinikiwi client CLI
///
@@ -34,7 +34,8 @@ impl Into<pezsc_transaction_pool::TransactionPoolType> for TransactionPoolType {
match self {
TransactionPoolType::SingleState =>
pezsc_transaction_pool::TransactionPoolType::SingleState,
TransactionPoolType::ForkAware => pezsc_transaction_pool::TransactionPoolType::ForkAware,
TransactionPoolType::ForkAware =>
pezsc_transaction_pool::TransactionPoolType::ForkAware,
}
}
}
+1 -1
View File
@@ -16,7 +16,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use crate::{error::Error as CliError, Result, Signals, BizinikiwiCli};
use crate::{error::Error as CliError, BizinikiwiCli, Result, Signals};
use chrono::prelude::*;
use futures::{future::FutureExt, Future};
use log::info;