mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
make all extrinsics public so they are available from outside (#9078)
Co-authored-by: thiolliere <gui.thiolliere@gmail.com>
This commit is contained in:
@@ -488,7 +488,7 @@ pub mod pallet {
|
||||
#[pallet::weight(
|
||||
<T as pallet::Config>::WeightInfo::accumulate_dummy((*increase_by).saturated_into())
|
||||
)]
|
||||
pub(super) fn accumulate_dummy(
|
||||
pub fn accumulate_dummy(
|
||||
origin: OriginFor<T>,
|
||||
increase_by: T::Balance
|
||||
) -> DispatchResult {
|
||||
@@ -533,7 +533,7 @@ pub mod pallet {
|
||||
// The weight for this extrinsic we use our own weight object `WeightForSetDummy` to determine
|
||||
// its weight
|
||||
#[pallet::weight(WeightForSetDummy::<T>(<BalanceOf<T>>::from(100u32)))]
|
||||
pub(super) fn set_dummy(
|
||||
pub fn set_dummy(
|
||||
origin: OriginFor<T>,
|
||||
#[pallet::compact] new_value: T::Balance,
|
||||
) -> DispatchResult {
|
||||
|
||||
Reference in New Issue
Block a user