Merge branch 'main' into misc/improve-e2e-tests

This commit is contained in:
Gonza Montiel 2025-11-06 12:38:18 +01:00 committed by GitHub
commit 87448eb7c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 3 deletions

View file

@ -1190,10 +1190,14 @@ parameter_types! {
};
}
parameter_types! {
pub const FreeHeadersInterval: u32 = 32; // 1 epoch = 6.4 minutes
}
impl snowbridge_pallet_ethereum_client::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type ForkVersions = ChainForkVersions;
type FreeHeadersInterval = ();
type FreeHeadersInterval = FreeHeadersInterval;
type WeightInfo = mainnet_weights::snowbridge_pallet_ethereum_client::WeightInfo<Runtime>;
}

View file

@ -1189,10 +1189,14 @@ parameter_types! {
};
}
parameter_types! {
pub const FreeHeadersInterval: u32 = 32; // 1 epoch = 6.4 minutes
}
impl snowbridge_pallet_ethereum_client::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type ForkVersions = ChainForkVersions;
type FreeHeadersInterval = ();
type FreeHeadersInterval = FreeHeadersInterval;
type WeightInfo = stagenet_weights::snowbridge_pallet_ethereum_client::WeightInfo<Runtime>;
}

View file

@ -1190,10 +1190,14 @@ parameter_types! {
};
}
parameter_types! {
pub const FreeHeadersInterval: u32 = 32; // 1 epoch = 6.4 minutes
}
impl snowbridge_pallet_ethereum_client::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type ForkVersions = ChainForkVersions;
type FreeHeadersInterval = ();
type FreeHeadersInterval = FreeHeadersInterval;
type WeightInfo = testnet_weights::snowbridge_pallet_ethereum_client::WeightInfo<Runtime>;
}

Binary file not shown.