Skip to content

Commit

Permalink
Set PoV size limit to 10 Mb
Browse files Browse the repository at this point in the history
  • Loading branch information
s0me0ne-unkn0wn committed Oct 1, 2024
1 parent 08498f5 commit 06108e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polkadot/primitives/src/v8/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ pub const MAX_HEAD_DATA_SIZE: u32 = 1 * 1024 * 1024;
/// * checking updates to this stored runtime configuration do not exceed this limit
/// * when detecting a PoV decompression bomb in the client
// NOTE: This value is used in the runtime so be careful when changing it.
pub const MAX_POV_SIZE: u32 = 5 * 1024 * 1024;
pub const MAX_POV_SIZE: u32 = 10 * 1024 * 1024;

/// Default queue size we use for the on-demand order book.
///
Expand Down

0 comments on commit 06108e1

Please sign in to comment.