Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Bumped rust toolchain version due to [email protected] compilation issues #233

Merged
merged 2 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OCIF/staking/src/primitives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//! - `RewardInfo` - A struct that holds information about rewards, including the balance for stakers and the core.
//! - `EraInfo` - A struct that holds information about a specific era, including rewards, staked balance, active stake, and locked balance.
//! - `CoreStakeInfo` - A struct that holds information about a core's stake, including the total balance,
//! number of stakers, and whether a reward has been claimed.
//! number of stakers, and whether a reward has been claimed.
//! - `EraStake` - A struct that holds information about the stake for a specific era.
//! - `StakerInfo` - A struct that holds information about a staker's stakes across different eras.
//! - `UnlockingChunk` - A struct that holds information about an unlocking chunk of balance.
Expand Down
2 changes: 1 addition & 1 deletion pallet-rings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//! - `send_call` - Allows a core to send a XCM call to a destination chain.
//! - `transfer_assets` - Allows a core to transfer fungible assets to another account in the destination chain.
//! - `bridge_assets` - Allows a core to bridge fungible assets to another chain having either a third party account or
//! the core account as beneficiary in the destination chain.
//! the core account as beneficiary in the destination chain.

#![cfg_attr(not(feature = "std"), no_std)]

Expand Down
4 changes: 2 additions & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2024-02-06"
channel = "nightly-2024-07-15"
targets = ["wasm32-unknown-unknown"]
components = [ "rustfmt", "rustc", "rust-std", "cargo", "clippy", "llvm-tools-preview"]
components = [ "rustfmt", "rustc", "rust-std", "cargo", "clippy", "llvm-tools-preview"]
Loading