Update to 1.13.0 triggered by workflow_dispatch

This commit is contained in:
Template Bot
2024-06-24 12:53:11 +00:00
parent ce6c1e045d
commit a9c96aa201
14 changed files with 712 additions and 618 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ use serde_json::{json, Value};
use sp_keyring::AccountKeyring;
/// This is a specialization of the general Substrate ChainSpec type.
pub type ChainSpec = sc_service::GenericChainSpec<()>;
pub type ChainSpec = sc_service::GenericChainSpec;
fn props() -> Properties {
let mut properties = Properties::new();
+1 -1
View File
@@ -32,7 +32,7 @@ impl std::str::FromStr for Consensus {
} else if let Some(block_time) = s.strip_prefix("manual-seal-") {
Consensus::ManualSeal(block_time.parse().map_err(|_| "invalid block time")?)
} else {
return Err("incorrect consensus identifier".into())
return Err("incorrect consensus identifier".into());
})
}
}
+1 -1
View File
@@ -61,7 +61,7 @@ pub fn new_partial(config: &Configuration) -> Result<Service, ServiceError> {
})
.transpose()?;
let executor = sc_service::new_wasm_executor(&config);
let executor = sc_service::new_wasm_executor(config);
let (client, backend, keystore_container, task_manager) =
sc_service::new_full_parts::<Block, RuntimeApi, _>(