This repository was archived by the owner on Aug 15, 2025. It is now read-only.
File tree Expand file tree Collapse 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 Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ use static_assertions::const_assert;
66pub mod mainnet;
77pub mod minimal;
88
9- #[ cfg( feature = "beacon-spec-minimal" ) ]
9+ #[ cfg( all ( feature = "beacon-spec-minimal" , not ( feature = "runtime-benchmarks" ) ) ) ]
1010pub use minimal:: * ;
1111
12- #[ cfg( not( feature = "beacon-spec-minimal" ) ) ]
12+ #[ cfg( any ( not( feature = "beacon-spec-minimal" ) , feature = "runtime-benchmarks ") ) ]
1313pub use mainnet:: * ;
1414
1515// Generalized Indices
Original file line number Diff line number Diff 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 ") ) ]
186186pub mod mainnet {
187187 use super :: * ;
188188
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments