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:
@@ -270,8 +270,8 @@ mod benches {
|
||||
_(origin as T::RuntimeOrigin, initial_price, extra_cores.try_into().unwrap());
|
||||
|
||||
assert!(SaleInfo::<T>::get().is_some());
|
||||
let sale_start = RCBlockNumberProviderOf::<T::Coretime>::current_block_number() +
|
||||
config.interlude_length;
|
||||
let sale_start = RCBlockNumberProviderOf::<T::Coretime>::current_block_number()
|
||||
+ config.interlude_length;
|
||||
assert_last_event::<T>(
|
||||
Event::SaleInitialized {
|
||||
sale_start,
|
||||
|
||||
@@ -109,9 +109,9 @@ impl<T: Config> Pezpallet<T> {
|
||||
let config = Configuration::<T>::get().ok_or(Error::<T>::Uninitialized)?;
|
||||
|
||||
// Determine the core count
|
||||
let core_count = Leases::<T>::decode_len().unwrap_or(0) as CoreIndex +
|
||||
Reservations::<T>::decode_len().unwrap_or(0) as CoreIndex +
|
||||
extra_cores;
|
||||
let core_count = Leases::<T>::decode_len().unwrap_or(0) as CoreIndex
|
||||
+ Reservations::<T>::decode_len().unwrap_or(0) as CoreIndex
|
||||
+ extra_cores;
|
||||
|
||||
Self::do_request_core_count(core_count)?;
|
||||
|
||||
@@ -352,7 +352,9 @@ impl<T: Config> Pezpallet<T> {
|
||||
let assigned = match PotentialRenewals::<T>::get(renewal_id) {
|
||||
Some(PotentialRenewalRecord { completion: Partial(w), price: p })
|
||||
if price == p =>
|
||||
w,
|
||||
{
|
||||
w
|
||||
},
|
||||
_ => CoreMask::void(),
|
||||
} | region_id.mask;
|
||||
let workload =
|
||||
|
||||
Reference in New Issue
Block a user