Skip to content

Commit

Permalink
".git/.scripts/commands/fmt/fmt.sh"
Browse files Browse the repository at this point in the history
  • Loading branch information
command-bot committed Jun 3, 2024
1 parent 81d041c commit 0e4ac1b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions cumulus/pallets/parachain-system/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,8 +743,7 @@ pub mod pallet {
/// The segment length is limited by the capacity returned from the [`ConsensusHook`] configured
/// in the pallet.
#[pallet::storage]
pub type UnincludedSegment<T: Config> =
StorageValue<_, Vec<Ancestor<T::Hash>>, ValueQuery>;
pub type UnincludedSegment<T: Config> = StorageValue<_, Vec<Ancestor<T::Hash>>, ValueQuery>;

/// Storage field that keeps track of bandwidth used by the unincluded segment along with the
/// latest HRMP watermark. Used for limiting the acceptance of new blocks with
Expand Down Expand Up @@ -861,8 +860,7 @@ pub mod pallet {
///
/// This will be cleared in `on_initialize` of each new block.
#[pallet::storage]
pub type HrmpWatermark<T: Config> =
StorageValue<_, relay_chain::BlockNumber, ValueQuery>;
pub type HrmpWatermark<T: Config> = StorageValue<_, relay_chain::BlockNumber, ValueQuery>;

/// HRMP messages that were sent in a block.
///
Expand All @@ -879,8 +877,7 @@ pub mod pallet {

/// Upward messages that are still pending and not yet send to the relay chain.
#[pallet::storage]
pub type PendingUpwardMessages<T: Config> =
StorageValue<_, Vec<UpwardMessage>, ValueQuery>;
pub type PendingUpwardMessages<T: Config> = StorageValue<_, Vec<UpwardMessage>, ValueQuery>;

/// Initialization value for the delivery fee factor for UMP.
#[pallet::type_value]
Expand Down

0 comments on commit 0e4ac1b

Please sign in to comment.