Skip to content

Commit 7a322a7

Browse files
authored
1 parent d8885cd commit 7a322a7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

runtime/crab/src/pallets/bridge_grandpa.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ pub type PolkadotHeadersToKeep = ConstU32<500>;
2626
impl pallet_bridge_grandpa::Config<WithPolkadotGrandpa> for Runtime {
2727
type BridgedChain = bp_darwinia::DarwiniaLike;
2828
type HeadersToKeep = PolkadotHeadersToKeep;
29-
type MaxBridgedAuthorities = ();
30-
type MaxBridgedHeaderSize = ();
29+
type MaxBridgedAuthorities = ConstU32<100_000>;
30+
type MaxBridgedHeaderSize = ConstU32<65536>;
3131
type MaxRequests = ConstU32<50>;
3232
type WeightInfo = ();
3333
}

runtime/darwinia/src/pallets/bridge_grandpa.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ pub type KusamaHeadersToKeep = ConstU32<500>;
2626
impl pallet_bridge_grandpa::Config<WithKusamaGrandpa> for Runtime {
2727
type BridgedChain = bp_crab::DarwiniaLike;
2828
type HeadersToKeep = KusamaHeadersToKeep;
29-
type MaxBridgedAuthorities = ();
30-
type MaxBridgedHeaderSize = ();
29+
type MaxBridgedAuthorities = ConstU32<100_000>;
30+
type MaxBridgedHeaderSize = ConstU32<65536>;
3131
type MaxRequests = ConstU32<50>;
3232
type WeightInfo = ();
3333
}

0 commit comments

Comments
 (0)