File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,18 @@ decl_module! {
320
320
pub struct Module <T : Trait > for enum Call where origin: T :: Origin {
321
321
type Error = Error <T >;
322
322
323
+ /// The base amount of currency needed to reserve for creating a recovery configuration.
324
+ const ConfigDepositBase : BalanceOf <T > = T :: ConfigDepositBase :: get( ) ;
325
+
326
+ /// The amount of currency needed per additional user when creating a recovery configuration.
327
+ const FriendDepositFactor : BalanceOf <T > = T :: FriendDepositFactor :: get( ) ;
328
+
329
+ /// The maximum amount of friends allowed in a recovery configuration.
330
+ const MaxFriends : u16 = T :: MaxFriends :: get( ) ;
331
+
332
+ /// The base amount of currency needed to reserve for starting a recovery.
333
+ const RecoveryDeposit : BalanceOf <T > = T :: RecoveryDeposit :: get( ) ;
334
+
323
335
/// Deposit one of this module's events by using the default implementation.
324
336
fn deposit_event( ) = default ;
325
337
You can’t perform that action at this time.
0 commit comments