Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Add metadata shadows to multisig pallet (#7029)
Browse files Browse the repository at this point in the history
* Add metadata shadows to multisig pallet

* Update frame/multisig/src/lib.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
  • Loading branch information
joshua-mir and bkchr authored Sep 8, 2020
1 parent ce32367 commit e6e2292
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frame/multisig/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,16 @@ decl_module! {
/// Deposit one of this module's events by using the default implementation.
fn deposit_event() = default;

/// The base amount of currency needed to reserve for creating a multisig execution or to store
/// a dispatch call for later.
const DepositBase: BalanceOf<T> = T::DepositBase::get();

/// The amount of currency needed per unit threshold when creating a multisig execution.
const DepositFactor: BalanceOf<T> = T::DepositFactor::get();

/// The maximum amount of signatories allowed for a given multisig.
const MaxSignatories: u16 = T::MaxSignatories::get();

/// Immediately dispatch a multi-signature call using a single approval from the caller.
///
/// The dispatch origin for this call must be _Signed_.
Expand Down

0 comments on commit e6e2292

Please sign in to comment.