Update pallet macro migrations. (#8766)

* Update pallet macro migrations.

* Revert dispatchable call visibility changes.

* fmt
This commit is contained in:
Shaun Wang
2021-05-11 01:55:25 +12:00
committed by GitHub
parent f16f8def08
commit 9ae9267e9a
5 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -183,7 +183,7 @@ pub mod pallet {
T::WeightInfo::set(),
DispatchClass::Mandatory
))]
pub(super) fn set(origin: OriginFor<T>, #[pallet::compact] now: T::Moment) -> DispatchResultWithPostInfo {
pub(super) fn set(origin: OriginFor<T>, #[pallet::compact] now: T::Moment) -> DispatchResult {
ensure_none(origin)?;
assert!(!DidUpdate::<T>::exists(), "Timestamp must be updated only once in the block");
let prev = Self::now();
@@ -196,7 +196,7 @@ pub mod pallet {
<T::OnTimestampSet as OnTimestampSet<_>>::on_timestamp_set(now);
Ok(().into())
Ok(())
}
}