Skip to content
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
Reduce length of MarketsCollectingSubsidy
  • Loading branch information
maltekliemann committed Sep 18, 2023
commit ccb6238e86294ad04c6103d651c826f18255b848
2 changes: 1 addition & 1 deletion zrml/prediction-markets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2075,7 +2075,7 @@ mod pallet {
#[pallet::storage]
pub type MarketsCollectingSubsidy<T: Config> = StorageValue<
_,
BoundedVec<SubsidyUntil<T::BlockNumber, MomentOf<T>, MarketIdOf<T>>, ConstU32<1_048_576>>,
BoundedVec<SubsidyUntil<T::BlockNumber, MomentOf<T>, MarketIdOf<T>>, ConstU32<16>>,
ValueQuery,
>;

Expand Down