mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 05:21:08 +00:00
Companion PR (#1423)
This commit is contained in:
Generated
+278
-277
File diff suppressed because it is too large
Load Diff
@@ -17,7 +17,7 @@ exit-future = "0.2.0"
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master", version = "2.0.0-rc5" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
|
||||
@@ -510,7 +510,7 @@ mod tests {
|
||||
fn check_send<T: Send>(_: T) {}
|
||||
|
||||
let cli = Cli::from_iter(&["-dev"]);
|
||||
let task_executor = |_, _| {};
|
||||
let task_executor = |_, _| async {};
|
||||
let config = cli.create_configuration(&cli.run.base, task_executor.into()).unwrap();
|
||||
|
||||
check_send(start_collator(
|
||||
|
||||
@@ -26,7 +26,7 @@ static INTEGRATION_TEST_ALLOWED_TIME: Option<&str> = option_env!("INTEGRATION_TE
|
||||
#[tokio::test]
|
||||
async fn ensure_test_service_build_blocks() {
|
||||
let task_executor: TaskExecutor = (move |fut, _| {
|
||||
spawn(fut);
|
||||
spawn(fut).map(|_| ())
|
||||
})
|
||||
.into();
|
||||
let mut alice = run_test_node(
|
||||
|
||||
@@ -26,7 +26,7 @@ static INTEGRATION_TEST_ALLOWED_TIME: Option<&str> = option_env!("INTEGRATION_TE
|
||||
async fn call_function_actually_work() {
|
||||
let mut alice = run_test_node(
|
||||
(move |fut, _| {
|
||||
spawn(fut);
|
||||
spawn(fut).map(|_| ())
|
||||
})
|
||||
.into(),
|
||||
Alice,
|
||||
|
||||
@@ -87,7 +87,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
||||
spec_name: create_runtime_str!("kusama"),
|
||||
impl_name: create_runtime_str!("parity-kusama"),
|
||||
authoring_version: 2,
|
||||
spec_version: 2018,
|
||||
spec_version: 2019,
|
||||
impl_version: 0,
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
apis: RUNTIME_API_VERSIONS,
|
||||
|
||||
@@ -86,7 +86,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
||||
spec_name: create_runtime_str!("polkadot"),
|
||||
impl_name: create_runtime_str!("parity-polkadot"),
|
||||
authoring_version: 0,
|
||||
spec_version: 18,
|
||||
spec_version: 19,
|
||||
impl_version: 0,
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
apis: RUNTIME_API_VERSIONS,
|
||||
|
||||
@@ -83,7 +83,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
||||
spec_name: create_runtime_str!("westend"),
|
||||
impl_name: create_runtime_str!("parity-westend"),
|
||||
authoring_version: 2,
|
||||
spec_version: 38,
|
||||
spec_version: 39,
|
||||
impl_version: 0,
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
apis: RUNTIME_API_VERSIONS,
|
||||
|
||||
@@ -214,7 +214,7 @@ do
|
||||
source file directories:
|
||||
- runtime
|
||||
|
||||
versions file: ${VERSIONS_FILE}
|
||||
versions file: ${RUNTIME}
|
||||
|
||||
EOT
|
||||
|
||||
|
||||
Reference in New Issue
Block a user