mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 07:41:08 +00:00
downgrade a warn log to debug (#3319)
* downgrade to debug * another thick log * bump spec versions in kusama, polkadot and westend again IV
This commit is contained in:
@@ -319,7 +319,7 @@ pub(crate) async fn handle_new_head(
|
||||
|
||||
match state.session_window.cache_session_info_for_head(ctx, head, &header).await {
|
||||
Err(e) => {
|
||||
tracing::warn!(
|
||||
tracing::debug!(
|
||||
target: LOG_TARGET,
|
||||
?head,
|
||||
?e,
|
||||
|
||||
@@ -395,8 +395,11 @@ async fn determine_our_validators(
|
||||
cores: usize,
|
||||
relay_parent: Hash,
|
||||
) -> Result<(GroupValidators, GroupValidators)> {
|
||||
let info = &runtime.get_session_info(ctx, relay_parent).await?.session_info;
|
||||
tracing::debug!(target: LOG_TARGET, ?info, "Received info");
|
||||
let session_index = runtime.get_session_index(ctx, relay_parent).await?;
|
||||
let info = &runtime.get_session_info_by_index(ctx, relay_parent, session_index)
|
||||
.await?
|
||||
.session_info;
|
||||
tracing::debug!(target: LOG_TARGET, ?session_index, "Received session info");
|
||||
let groups = &info.validator_groups;
|
||||
let rotation_info = get_group_rotation_info(ctx, relay_parent).await?;
|
||||
|
||||
|
||||
@@ -120,7 +120,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
||||
spec_name: create_runtime_str!("kusama"),
|
||||
impl_name: create_runtime_str!("parity-kusama"),
|
||||
authoring_version: 2,
|
||||
spec_version: 9050,
|
||||
spec_version: 9051,
|
||||
impl_version: 0,
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
apis: RUNTIME_API_VERSIONS,
|
||||
|
||||
@@ -95,7 +95,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
||||
spec_name: create_runtime_str!("polkadot"),
|
||||
impl_name: create_runtime_str!("parity-polkadot"),
|
||||
authoring_version: 0,
|
||||
spec_version: 9050,
|
||||
spec_version: 9051,
|
||||
impl_version: 0,
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
apis: RUNTIME_API_VERSIONS,
|
||||
|
||||
@@ -119,7 +119,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
|
||||
spec_name: create_runtime_str!("westend"),
|
||||
impl_name: create_runtime_str!("parity-westend"),
|
||||
authoring_version: 2,
|
||||
spec_version: 9050,
|
||||
spec_version: 9051,
|
||||
impl_version: 0,
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
apis: RUNTIME_API_VERSIONS,
|
||||
|
||||
Reference in New Issue
Block a user