File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -262,6 +262,16 @@ decl_module! {
262
262
/// Deposit one of this module's events by using the default implementation.
263
263
fn deposit_event( ) = default ;
264
264
265
+ /// The base amount of currency needed to reserve for creating a multisig execution or to store
266
+ /// a dispatch call for later.
267
+ const DepositBase : BalanceOf <T > = T :: DepositBase :: get( ) ;
268
+
269
+ /// The amount of currency needed per unit threshold when creating a multisig execution.
270
+ const DepositFactor : BalanceOf <T > = T :: DepositFactor :: get( ) ;
271
+
272
+ /// The maximum amount of signatories allowed for a given multisig.
273
+ const MaxSignatories : u16 = T :: MaxSignatories :: get( ) ;
274
+
265
275
/// Immediately dispatch a multi-signature call using a single approval from the caller.
266
276
///
267
277
/// The dispatch origin for this call must be _Signed_.
You can’t perform that action at this time.
0 commit comments