style: Migrate to stable-only rustfmt configuration

- Remove nightly-only features from .rustfmt.toml and vendor/ss58-registry/rustfmt.toml
- Removed features: imports_granularity, wrap_comments, comment_width,
  reorder_impl_items, spaces_around_ranges, binop_separator,
  match_arm_blocks, trailing_semicolon, trailing_comma
- Format all 898 affected files with stable rustfmt
- Ensures long-term reliability without nightly toolchain dependency
This commit is contained in:
2025-12-22 17:12:58 +03:00
parent 3208f208c0
commit abc4c3989b
898 changed files with 8671 additions and 6432 deletions
@@ -156,10 +156,12 @@ async fn run_iteration<Context>(
},
FromOrchestra::Signal(OverseerSignal::BlockFinalized(..)) => {},
FromOrchestra::Communication { msg } => match msg {
ProspectiveTeyrchainsMessage::IntroduceSecondedCandidate(request, tx) =>
handle_introduce_seconded_candidate(view, request, tx, metrics).await,
ProspectiveTeyrchainsMessage::CandidateBacked(para, candidate_hash) =>
handle_candidate_backed(view, para, candidate_hash, metrics).await,
ProspectiveTeyrchainsMessage::IntroduceSecondedCandidate(request, tx) => {
handle_introduce_seconded_candidate(view, request, tx, metrics).await
},
ProspectiveTeyrchainsMessage::CandidateBacked(para, candidate_hash) => {
handle_candidate_backed(view, para, candidate_hash, metrics).await
},
ProspectiveTeyrchainsMessage::GetBackableCandidates(
relay_parent,
para,
@@ -167,12 +169,15 @@ async fn run_iteration<Context>(
ancestors,
tx,
) => answer_get_backable_candidates(&view, relay_parent, para, count, ancestors, tx),
ProspectiveTeyrchainsMessage::GetHypotheticalMembership(request, tx) =>
answer_hypothetical_membership_request(&view, request, tx, metrics),
ProspectiveTeyrchainsMessage::GetMinimumRelayParents(relay_parent, tx) =>
answer_minimum_relay_parents_request(&view, relay_parent, tx),
ProspectiveTeyrchainsMessage::GetProspectiveValidationData(request, tx) =>
answer_prospective_validation_data_request(&view, request, tx),
ProspectiveTeyrchainsMessage::GetHypotheticalMembership(request, tx) => {
answer_hypothetical_membership_request(&view, request, tx, metrics)
},
ProspectiveTeyrchainsMessage::GetMinimumRelayParents(relay_parent, tx) => {
answer_minimum_relay_parents_request(&view, relay_parent, tx)
},
ProspectiveTeyrchainsMessage::GetProspectiveValidationData(request, tx) => {
answer_prospective_validation_data_request(&view, request, tx)
},
},
}
}