fix compilation on nightly (#1850)

* runtime: annonate some types

* cargo update -p sp-io

* add wasm overwrites to Configuration in test-service

* rename overwrite to override

Co-authored-by: Andrew Plaza <andrew.plaza@parity.io>
This commit is contained in:
Andronik Ordian
2020-10-26 18:25:49 +01:00
committed by GitHub
parent 0c316acef0
commit fa1881458f
4 changed files with 144 additions and 143 deletions
+1 -1
View File
@@ -269,7 +269,7 @@ decl_module! {
let owner = ensure_signed(origin)?;
ensure!(first_slot < last_slot, Error::<T>::LastSlotBeforeFirstSlot);
ensure!(last_slot <= first_slot + 3.into(), Error::<T>::LastSlotTooFarInFuture);
ensure!(last_slot <= first_slot + 3u32.into(), Error::<T>::LastSlotTooFarInFuture);
ensure!(end > <frame_system::Module<T>>::block_number(), Error::<T>::CannotEndInPast);
let deposit = T::SubmissionDeposit::get();