make all extrinsics public so they are available from outside (#9078)

Co-authored-by: thiolliere <gui.thiolliere@gmail.com>
This commit is contained in:
Alexander Popiak
2021-06-12 12:43:08 +02:00
committed by GitHub
parent ad5b8afa6e
commit 5dec6e5c81
21 changed files with 155 additions and 155 deletions
+10 -10
View File
@@ -183,7 +183,7 @@ pub mod pallet {
.saturating_add(T::DbWeight::get().reads_writes(1, 1)),
di.class)
})]
pub(super) fn proxy(
pub fn proxy(
origin: OriginFor<T>,
real: T::AccountId,
force_proxy_type: Option<T::ProxyType>,
@@ -212,7 +212,7 @@ pub mod pallet {
/// Weight is a function of the number of proxies the user has (P).
/// # </weight>
#[pallet::weight(T::WeightInfo::add_proxy(T::MaxProxies::get().into()))]
pub(super) fn add_proxy(
pub fn add_proxy(
origin: OriginFor<T>,
delegate: T::AccountId,
proxy_type: T::ProxyType,
@@ -234,7 +234,7 @@ pub mod pallet {
/// Weight is a function of the number of proxies the user has (P).
/// # </weight>
#[pallet::weight(T::WeightInfo::remove_proxy(T::MaxProxies::get().into()))]
pub(super) fn remove_proxy(
pub fn remove_proxy(
origin: OriginFor<T>,
delegate: T::AccountId,
proxy_type: T::ProxyType,
@@ -255,7 +255,7 @@ pub mod pallet {
/// Weight is a function of the number of proxies the user has (P).
/// # </weight>
#[pallet::weight(T::WeightInfo::remove_proxies(T::MaxProxies::get().into()))]
pub(super) fn remove_proxies(origin: OriginFor<T>) -> DispatchResultWithPostInfo {
pub fn remove_proxies(origin: OriginFor<T>) -> DispatchResultWithPostInfo {
let who = ensure_signed(origin)?;
let (_, old_deposit) = Proxies::<T>::take(&who);
T::Currency::unreserve(&who, old_deposit);
@@ -287,7 +287,7 @@ pub mod pallet {
/// # </weight>
/// TODO: Might be over counting 1 read
#[pallet::weight(T::WeightInfo::anonymous(T::MaxProxies::get().into()))]
pub(super) fn anonymous(
pub fn anonymous(
origin: OriginFor<T>,
proxy_type: T::ProxyType,
delay: T::BlockNumber,
@@ -337,7 +337,7 @@ pub mod pallet {
/// Weight is a function of the number of proxies the user has (P).
/// # </weight>
#[pallet::weight(T::WeightInfo::kill_anonymous(T::MaxProxies::get().into()))]
pub(super) fn kill_anonymous(
pub fn kill_anonymous(
origin: OriginFor<T>,
spawner: T::AccountId,
proxy_type: T::ProxyType,
@@ -379,7 +379,7 @@ pub mod pallet {
/// - P: the number of proxies the user has.
/// # </weight>
#[pallet::weight(T::WeightInfo::announce(T::MaxPending::get(), T::MaxProxies::get().into()))]
pub(super) fn announce(
pub fn announce(
origin: OriginFor<T>,
real: T::AccountId,
call_hash: CallHashOf<T>
@@ -430,7 +430,7 @@ pub mod pallet {
#[pallet::weight(
T::WeightInfo::remove_announcement(T::MaxPending::get(), T::MaxProxies::get().into())
)]
pub(super) fn remove_announcement(
pub fn remove_announcement(
origin: OriginFor<T>,
real: T::AccountId,
call_hash: CallHashOf<T>
@@ -460,7 +460,7 @@ pub mod pallet {
#[pallet::weight(
T::WeightInfo::reject_announcement(T::MaxPending::get(), T::MaxProxies::get().into())
)]
pub(super) fn reject_announcement(
pub fn reject_announcement(
origin: OriginFor<T>,
delegate: T::AccountId,
call_hash: CallHashOf<T>
@@ -496,7 +496,7 @@ pub mod pallet {
.saturating_add(T::DbWeight::get().reads_writes(1, 1)),
di.class)
})]
pub(super) fn proxy_announced(
pub fn proxy_announced(
origin: OriginFor<T>,
delegate: T::AccountId,
real: T::AccountId,