Skip to content

Commit

Permalink
increase the max header size
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailai-Wang committed Sep 13, 2023
1 parent 7cbc39f commit b511e48
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tee-worker/core-primitives/settings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ pub mod worker {
// the maximum size of any extrinsic that the enclave will ever generate in B
pub const EXTRINSIC_MAX_SIZE: usize = 13_000;
// the maximum size of the header
pub const HEADER_MAX_SIZE: usize = 200;
// Litentry: change it to 300 after the evm pallet being fused
// see https://github.com/litentry/litentry-parachain/actions/runs/6168159073/job/16742757562
pub const HEADER_MAX_SIZE: usize = 300;
// maximum size of shielding key
pub const SHIELDING_KEY_SIZE: usize = 8192;
// maximum size of signing key
Expand Down

0 comments on commit b511e48

Please sign in to comment.