Skip to content

Commit

Permalink
Remove system.fill_block
Browse files Browse the repository at this point in the history
  • Loading branch information
Neopallium committed Mar 27, 2023
1 parent a37081e commit 709b305
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frame/system/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,13 @@ pub mod pallet {

#[pallet::call]
impl<T: Config> Pallet<T> {
/// Placeholder for removed `fill_block`.
#[pallet::weight(1_000)]
pub fn placeholder_fill_block(origin: OriginFor<T>) -> DispatchResult {
ensure_signed_or_root(origin)?;
Ok(())
}

/// Make some on-chain remark.
///
/// # <weight>
Expand Down

0 comments on commit 709b305

Please sign in to comment.