Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Fast runtime #89

Merged
merged 4 commits into from
Dec 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use fast-runtime in BH
  • Loading branch information
yrong committed Dec 22, 2023
commit 6cdb750bc6d35de998fe15b45a14cf5ecc7c8b62
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ impl snowbridge_outbound_queue::Config for Runtime {
type Channels = EthereumSystem;
}

#[cfg(feature = "beacon-spec-minimal")]
#[cfg(feature = "fast-runtime")]
parameter_types! {
pub const ChainForkVersions: ForkVersions = ForkVersions {
genesis: Fork {
Expand All @@ -590,7 +590,7 @@ parameter_types! {
};
}

#[cfg(not(feature = "beacon-spec-minimal"))]
#[cfg(not(feature = "fast-runtime"))]
parameter_types! {
pub const ChainForkVersions: ForkVersions = ForkVersions {
genesis: Fork {
Expand Down