mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 17:17:56 +00:00
Add ci check for parity-publish and fix current check issues (#1887)
Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Bastian Köcher <info@kchr.de>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "node-cli"
|
||||
name = "staging-node-cli"
|
||||
version = "3.0.0-dev"
|
||||
authors.workspace = true
|
||||
description = "Generic Substrate node implementation in Rust."
|
||||
@@ -101,12 +101,12 @@ pallet-im-online = { path = "../../../frame/im-online", default-features = false
|
||||
kitchensink-runtime = { path = "../runtime" }
|
||||
node-rpc = { path = "../rpc" }
|
||||
node-primitives = { path = "../primitives" }
|
||||
node-executor = { path = "../executor" }
|
||||
node-executor = { package = "staging-node-executor", path = "../executor" }
|
||||
|
||||
# CLI-specific dependencies
|
||||
sc-cli = { path = "../../../client/cli", optional = true}
|
||||
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true}
|
||||
node-inspect = { path = "../inspect", optional = true}
|
||||
node-inspect = { package = "staging-node-inspect", path = "../inspect", optional = true}
|
||||
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
|
||||
serde_json = "1.0.107"
|
||||
|
||||
@@ -139,7 +139,7 @@ substrate-cli-test-utils = { path = "../../../test-utils/cli" }
|
||||
[build-dependencies]
|
||||
clap = { version = "4.4.6", optional = true }
|
||||
clap_complete = { version = "4.0.2", optional = true }
|
||||
node-inspect = { path = "../inspect", optional = true}
|
||||
node-inspect = { package = "staging-node-inspect", path = "../inspect", optional = true}
|
||||
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true}
|
||||
substrate-build-script-utils = { path = "../../../utils/build-script-utils", optional = true}
|
||||
substrate-frame-cli = { path = "../../../utils/frame/frame-utilities-cli", optional = true}
|
||||
|
||||
@@ -39,6 +39,7 @@ use sp_runtime::{
|
||||
transaction_validity::{InvalidTransaction, TransactionValidityError},
|
||||
AccountId32, MultiAddress, OpaqueExtrinsic,
|
||||
};
|
||||
use staging_node_cli as node_cli;
|
||||
use tokio::runtime::Handle;
|
||||
|
||||
fn new_node(tokio_handle: Handle) -> node_cli::service::NewFullBase {
|
||||
|
||||
@@ -35,6 +35,7 @@ use sc_transaction_pool_api::{TransactionPool as _, TransactionSource, Transacti
|
||||
use sp_core::{crypto::Pair, sr25519};
|
||||
use sp_keyring::Sr25519Keyring;
|
||||
use sp_runtime::OpaqueExtrinsic;
|
||||
use staging_node_cli as node_cli;
|
||||
use tokio::runtime::Handle;
|
||||
|
||||
fn new_node(tokio_handle: Handle) -> node_cli::service::NewFullBase {
|
||||
|
||||
@@ -20,6 +20,8 @@
|
||||
|
||||
#![warn(missing_docs)]
|
||||
|
||||
use staging_node_cli as node_cli;
|
||||
|
||||
fn main() -> sc_cli::Result<()> {
|
||||
node_cli::run()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user