Skip to content

Commit

Permalink
CI fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo committed Nov 9, 2023
1 parent a721ee8 commit a09f2fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion polkadot/primitives/src/v6/async_backing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use scale_info::TypeInfo;
serde::Serialize,
serde::Deserialize,
)]

#[scale_info(replace_segment("staging_tracking_allocator", "tracking_allocator"))]
pub struct AsyncBackingParams {
/// The maximum number of para blocks between the para head in a relay parent
/// and a new candidate. Restricts nodes from building arbitrary long chains
Expand Down
2 changes: 2 additions & 0 deletions polkadot/primitives/src/v6/executor_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const DEFAULT_APPROVAL_EXECUTION_TIMEOUT_MS: u64 =

/// The different executor parameters for changing the execution environment semantics.
#[derive(Clone, Debug, Encode, Decode, PartialEq, Eq, TypeInfo, Serialize, Deserialize)]
#[scale_info(replace_segment("staging_tracking_allocator", "tracking_allocator"))]
pub enum ExecutorParam {
/// Maximum number of memory pages (64KiB bytes per page) the executor can allocate.
/// A valid value lies within (0, 65536].
Expand Down Expand Up @@ -160,6 +161,7 @@ impl sp_std::fmt::LowerHex for ExecutorParamsHash {
// new entries and removing old ones. At the moment, there's no mandatory parameters defined. If
// they show up, they must be clearly documented as mandatory ones.
#[derive(Clone, Debug, Encode, Decode, PartialEq, Eq, TypeInfo, Serialize, Deserialize)]
#[scale_info(replace_segment("staging_tracking_allocator", "tracking_allocator"))]
pub struct ExecutorParams(Vec<ExecutorParam>);

impl ExecutorParams {
Expand Down

0 comments on commit a09f2fa

Please sign in to comment.