Update for using Mandatory inherents (#967)

* Update for using Mandatory inherents.

* use
This commit is contained in:
Gavin Wood
2020-04-05 14:27:58 +02:00
committed by GitHub
parent 15a83079ba
commit 7f838b0c35
3 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ decl_module! {
type Error = Error<T>;
/// Provide candidate receipts for parachains, in ascending order by id.
#[weight = frame_support::weights::SimpleDispatchInfo::default()]
#[weight = frame_support::weights::SimpleDispatchInfo::FixedMandatory(10_000)]
fn more_attestations(origin, _more: MoreAttestations) -> DispatchResult {
ensure_none(origin)?;
ensure!(!DidUpdate::exists(), Error::<T>::TooManyAttestations);