Skip to content
Snippets Groups Projects
Commit 01569322 authored by Shawn Tabrizi's avatar Shawn Tabrizi Committed by GitHub
Browse files

Expose constants from Proxy Pallet (#6420)

parent 46627bbb
No related merge requests found
......@@ -135,6 +135,15 @@ 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 proxy.
const ProxyDepositBase: BalanceOf<T> = T::ProxyDepositBase::get();
/// The amount of currency needed per proxy added.
const ProxyDepositFactor: BalanceOf<T> = T::ProxyDepositFactor::get();
/// The maximum amount of proxies allowed for a single account.
const MaxProxies: u16 = T::MaxProxies::get();
/// Dispatch the given `call` from an account that the sender is authorised for through
/// `add_proxy`.
///
......
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