Skip to content

Commit

Permalink
add feature change back in and bump runtime version
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden authored and claravanstaden committed Dec 22, 2023
1 parent 1dcc1a4 commit f6153b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ use static_assertions::const_assert;
pub mod mainnet;
pub mod minimal;

#[cfg(feature = "beacon-spec-minimal")]
#[cfg(all(feature = "beacon-spec-minimal", not(feature = "runtime-benchmarks")))]
pub use minimal::*;

#[cfg(not(feature = "beacon-spec-minimal"))]
#[cfg(any(not(feature = "beacon-spec-minimal"), feature = "runtime-benchmarks"))]
pub use mainnet::*;

// Generalized Indices
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ pub mod minimal {
}
}

#[cfg(not(feature = "beacon-spec-minimal"))]
#[cfg(any(not(feature = "beacon-spec-minimal"), feature = "runtime-benchmarks"))]
pub mod mainnet {
use super::*;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("bridge-hub-rococo"),
impl_name: create_runtime_str!("bridge-hub-rococo"),
authoring_version: 1,
spec_version: 1_005_001,
spec_version: 1_005_002,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 4,
Expand Down

0 comments on commit f6153b8

Please sign in to comment.