mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user