From 96a8f750c221dedd4c3eb6866e669a2a14a0df95 Mon Sep 17 00:00:00 2001 From: ordian Date: Tue, 11 Jun 2024 10:05:37 +0200 Subject: [PATCH] fix the comment about snowbridge --- polkadot/runtime/parachains/src/paras/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/parachains/src/paras/mod.rs b/polkadot/runtime/parachains/src/paras/mod.rs index 58062d00e84d..6f2110316aa0 100644 --- a/polkadot/runtime/parachains/src/paras/mod.rs +++ b/polkadot/runtime/parachains/src/paras/mod.rs @@ -1227,7 +1227,7 @@ const INVALID_TX_DOUBLE_VOTE: u8 = 3; /// It does not actually fix it, but makes the worst case better. Without that limit someone /// could completely DoS the relay chain by registering a ridiculously high amount of paras. /// With this limit the same attack could lead to some parachains ceasing to being able to -/// communicate via snowbridge. +/// communicate via offchain XCMP. Snowbridge will still work as it only cares about `BridgeHub`. pub const MAX_PARA_HEADS: usize = 1024; impl Pallet {