Update Rust Toolchain to 1.77, Suppress Warnings, and Enhance Runtime #778
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
Enhancement, Bug fix
Description
Changes walkthrough 📝
12 files
eth.rs
Suppress deprecation warnings in Ethereum compatibility module
node/src/eth.rs
#[allow(deprecated)]
attribute to suppress deprecation warnings.service.rs
Suppress deprecation warnings in service module
node/src/service.rs
#[allow(deprecated)]
attribute to suppress deprecation warnings.lib.rs
Remove unnecessary Clippy lint allowance
pallets/asset-metadata-extender/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.lib.rs
Remove unnecessary Clippy lint allowance
pallets/laos-evolution/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.lib.rs
Remove unnecessary Clippy lint allowance
pallets/parachain-staking/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.mock.rs
Remove unnecessary Clippy lint allowance
pallets/parachain-staking/src/mock.rs
#[allow(clippy::manual_inspect)]
attribute.tests.rs
Clean up and simplify staking tests
pallets/parachain-staking/src/tests.rs
Balances::burn
call.lib.rs
Remove unnecessary Clippy lint allowance
pallets/precompiles-benchmark/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.treasury.rs
Clean up unused imports in treasury configuration
runtime/laos/src/configs/treasury.rs
currency::UNIT
.lib.rs
Update runtime specification version
runtime/laos/src/lib.rs
spec_version
from 2100 to 2200.migrations.rs
Add migration for XCMP queue to version 5
runtime/laos/src/migrations.rs
MigrateV4ToV5
.V5Config
forRuntime
.config.ts
Update runtime spec version in E2E tests
e2e-tests/tests/config.ts
RUNTIME_SPEC_VERSION
from 2100 to 2200.1 files
Cargo.toml
Bump project version to 0.22.0
Cargo.toml
1 files
rust-toolchain
Update Rust toolchain to version 1.77
rust-toolchain