Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo: PRORITY -> PRIORITY
  • Loading branch information
subsocialdev authored Jun 8, 2020
commit a37ae844ded7398948535ab2bb4fbb57509d4c7c
4 changes: 2 additions & 2 deletions frame/support/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1465,12 +1465,12 @@ pub mod schedule {

/// The highest priority. We invert the value so that normal sorting will place the highest
/// priority at the beginning of the list.
pub const HIGHEST_PRORITY: Priority = 0;
pub const HIGHEST_PRIORITY: Priority = 0;
/// Anything of this value or lower will definitely be scheduled on the block that they ask for, even
/// if it breaches the `MaximumWeight` limitation.
pub const HARD_DEADLINE: Priority = 63;
/// The lowest priority. Most stuff should be around here.
pub const LOWEST_PRORITY: Priority = 255;
pub const LOWEST_PRIORITY: Priority = 255;

/// A type that can be used as a scheduler.
pub trait Anon<BlockNumber, Call> {
Expand Down