Browse Source

runtime: utility: Rename a constant.

AllowedLockCombinationProvider -> AllowedLockCombinations
Shamil Gadelshin 3 years ago
parent
commit
b7343f3e77
1 changed files with 1 additions and 1 deletions
  1. 1 1
      runtime-modules/utility/src/lib.rs

+ 1 - 1
runtime-modules/utility/src/lib.rs

@@ -120,7 +120,7 @@ decl_module! {
         type Error = Error<T>;
 
         /// Exposes allowed lock combinations from the runtime level.
-        const AllowedLockCombinationProvider: BTreeSet<(LockIdentifier, LockIdentifier)> =
+        const AllowedLockCombinations: BTreeSet<(LockIdentifier, LockIdentifier)> =
             T::AllowedLockCombinationProvider::get_allowed_lock_combinations();
 
         /// Signal proposal extrinsic. Should be used as callable object to pass to the `engine` module.