Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit f6153b8

Browse files
claravanstadenclaravanstaden
authored andcommitted
add feature change back in and bump runtime version
1 parent 1dcc1a4 commit f6153b8

File tree

3 files changed

+4
-4
lines changed
  • bridges/snowbridge/parachain/pallets/ethereum-beacon-client/src
  • cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src

3 files changed

+4
-4
lines changed

bridges/snowbridge/parachain/pallets/ethereum-beacon-client/src/config/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ use static_assertions::const_assert;
66
pub mod mainnet;
77
pub mod minimal;
88

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

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

1515
// Generalized Indices

bridges/snowbridge/parachain/pallets/ethereum-beacon-client/src/mock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ pub mod minimal {
182182
}
183183
}
184184

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

cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
211211
spec_name: create_runtime_str!("bridge-hub-rococo"),
212212
impl_name: create_runtime_str!("bridge-hub-rococo"),
213213
authoring_version: 1,
214-
spec_version: 1_005_001,
214+
spec_version: 1_005_002,
215215
impl_version: 0,
216216
apis: RUNTIME_API_VERSIONS,
217217
transaction_version: 4,

0 commit comments

Comments
 (0)