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
@@ -174,7 +174,7 @@ pub mod pallet {
/// Additionally contains a DB write.
/// # </weight>
#[pallet::weight(T::WeightInfo::store(data.len() as u32))]
pub(super) fn store(
pub fn store(
origin: OriginFor<T>,
data: Vec<u8>,
) -> DispatchResult {
@@ -220,7 +220,7 @@ pub mod pallet {
/// - Constant.
/// # </weight>
#[pallet::weight(T::WeightInfo::renew())]
pub(super) fn renew(
pub fn renew(
origin: OriginFor<T>,
block: T::BlockNumber,
index: u32,
@@ -261,7 +261,7 @@ pub mod pallet {
/// Here we assume a maximum of 100 probed transactions.
/// # </weight>
#[pallet::weight((T::WeightInfo::check_proof_max(), DispatchClass::Mandatory))]
pub(super) fn check_proof(
pub fn check_proof(
origin: OriginFor<T>,
proof: TransactionStorageProof,
) -> DispatchResultWithPostInfo {