Skip to content
Snippets Groups Projects
Commit 97b06e1e authored by joshua-mir's avatar joshua-mir Committed by GitHub
Browse files

Add metadata shadows to multisig pallet (#7029)


* Add metadata shadows to multisig pallet

* Update frame/multisig/src/lib.rs

Co-authored-by: default avatarBastian Köcher <bkchr@users.noreply.github.com>
parent 4ef025b7
No related merge requests found
......@@ -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_.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment