fix nightly warnings (#7347)

This commit is contained in:
Squirrel
2023-06-11 20:58:42 +01:00
committed by GitHub
parent 23adb35183
commit d90173e438
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1286,7 +1286,7 @@ macro_rules! chain_ops {
/// Builds a new object suitable for chain operations. /// Builds a new object suitable for chain operations.
#[cfg(feature = "full-node")] #[cfg(feature = "full-node")]
pub fn new_chain_ops( pub fn new_chain_ops(
mut config: &mut Configuration, config: &mut Configuration,
jaeger_agent: Option<std::net::SocketAddr>, jaeger_agent: Option<std::net::SocketAddr>,
) -> Result< ) -> Result<
( (
@@ -433,12 +433,12 @@ impl<T: Config> Registrar for Pallet<T> {
// Apply a lock to the parachain. // Apply a lock to the parachain.
fn apply_lock(id: ParaId) { fn apply_lock(id: ParaId) {
Paras::<T>::mutate(id, |x| x.as_mut().map(|mut info| info.locked = true)); Paras::<T>::mutate(id, |x| x.as_mut().map(|info| info.locked = true));
} }
// Remove a lock from the parachain. // Remove a lock from the parachain.
fn remove_lock(id: ParaId) { fn remove_lock(id: ParaId) {
Paras::<T>::mutate(id, |x| x.as_mut().map(|mut info| info.locked = false)); Paras::<T>::mutate(id, |x| x.as_mut().map(|info| info.locked = false));
} }
// Register a Para ID under control of `manager`. // Register a Para ID under control of `manager`.