mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +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:
@@ -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?;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user