Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed without_storage_info from messages and schema pallets #1702

Merged
merged 16 commits into from
Oct 23, 2023
Merged
Prev Previous commit
Next Next commit
revert constant changes to original
  • Loading branch information
aramikm committed Oct 17, 2023
commit 401510979b7dcd6e1ff30db23050e5f72de634ed
4 changes: 2 additions & 2 deletions runtime/common/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,13 +263,13 @@ pub type CollatorKickThreshold =
// Needs parameter_types! for the PalletId and impls below
parameter_types! {
pub const NeverDepositIntoId: PalletId = PalletId(*b"NeverDep");
pub const MessagesMaxPayloadSizeBytes: u32 = 1024 * 5; // 5K
pub const MessagesMaxPayloadSizeBytes: u32 = 1024 * 50; // 50K
}
// -end- Collator Selection Pallet ---

// --- Messages Pallet ---
/// The maximum number of messages per block
pub type MessagesMaxPerBlock = ConstU32<150>;
pub type MessagesMaxPerBlock = ConstU32<7000>;

impl Clone for MessagesMaxPayloadSizeBytes {
fn clone(&self) -> Self {
Expand Down
Loading