diff --git a/pallets/author-inherent/src/lib.rs b/pallets/author-inherent/src/lib.rs index 19869459..93c6fb79 100644 --- a/pallets/author-inherent/src/lib.rs +++ b/pallets/author-inherent/src/lib.rs @@ -122,7 +122,7 @@ pub mod pallet { ensure_none(origin)?; // First check that the slot number is valid (greater than the previous highest) - let slot= T::SlotBeacon::slot(); + let slot = T::SlotBeacon::slot(); assert!( slot > HighestSlotSeen::::get(), "Block invalid; Supplied slot number is not high enough"