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
@@ -768,8 +768,8 @@ impl FragmentChain {
/// Return whether this candidate is backed in this chain or the unconnected storage.
pub fn is_candidate_backed(&self, hash: &CandidateHash) -> bool {
self.best_chain.candidates.contains(hash) ||
matches!(
self.best_chain.candidates.contains(hash)
|| matches!(
self.unconnected.by_candidate_hash.get(hash),
Some(candidate) if candidate.state == CandidateState::Backed
)
@@ -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)
},
},
}
}
@@ -343,9 +343,9 @@ async fn handle_leaf_activation(
AllMessages::RuntimeApi(RuntimeApiMessage::Request(
parent,
RuntimeApiRequest::BackingConstraints(p_id, tx),
)) if parent == *hash &&
test_state.runtime_api_version >=
RuntimeApiRequest::CONSTRAINTS_RUNTIME_REQUIREMENT =>
)) if parent == *hash
&& test_state.runtime_api_version
>= RuntimeApiRequest::CONSTRAINTS_RUNTIME_REQUIREMENT =>
{
let PerParaData { min_relay_parent, head_data, pending_availability: _ } =
leaf.para_data(p_id);
@@ -362,9 +362,9 @@ async fn handle_leaf_activation(
AllMessages::RuntimeApi(RuntimeApiMessage::Request(
parent,
RuntimeApiRequest::BackingConstraints(_p_id, tx),
)) if parent == *hash &&
test_state.runtime_api_version <
RuntimeApiRequest::CONSTRAINTS_RUNTIME_REQUIREMENT =>
)) if parent == *hash
&& test_state.runtime_api_version
< RuntimeApiRequest::CONSTRAINTS_RUNTIME_REQUIREMENT =>
{
tx.send(Err(RUNTIME_API_NOT_SUPPORTED)).unwrap();
None