Browse Source

make MaxNumber type public

iorveth 4 years ago
parent
commit
af305a80b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      runtime-modules/content-directory/src/lib.rs

+ 1 - 1
runtime-modules/content-directory/src/lib.rs

@@ -160,7 +160,7 @@ pub use errors::Error;
 use core::debug_assert;
 
 /// Type, used in diffrent numeric constraints representations
-type MaxNumber = u32;
+pub type MaxNumber = u32;
 
 /// Module configuration trait for this Substrate module.
 pub trait Trait: system::Trait + ActorAuthenticator + Clone {