Skip to content

Commit e6e2292

Browse files
joshua-mirbkchr
andauthored
Add metadata shadows to multisig pallet (paritytech#7029)
* Add metadata shadows to multisig pallet * Update frame/multisig/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]>
1 parent ce32367 commit e6e2292

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

frame/multisig/src/lib.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,16 @@ decl_module! {
262262
/// Deposit one of this module's events by using the default implementation.
263263
fn deposit_event() = default;
264264

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+
265275
/// Immediately dispatch a multi-signature call using a single approval from the caller.
266276
///
267277
/// The dispatch origin for this call must be _Signed_.

0 commit comments

Comments
 (0)