From 70d89c141f671b1611d73a7c67a6fb5f66ca0029 Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Fri, 9 Sep 2022 14:33:38 +0300 Subject: [PATCH] Expand docs on ParasPalletName (#1571) * expand docs on ParasPalletName * fmt --- bridges/modules/parachains/src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bridges/modules/parachains/src/lib.rs b/bridges/modules/parachains/src/lib.rs index 944059d6d9e0e..290bdadf04a73 100644 --- a/bridges/modules/parachains/src/lib.rs +++ b/bridges/modules/parachains/src/lib.rs @@ -132,7 +132,11 @@ pub mod pallet { /// we're interested in. type BridgesGrandpaPalletInstance: 'static; - /// Name of the `paras` pallet in the `construct_runtime!()` call at the bridged chain. + /// Name of the original `paras` pallet in the `construct_runtime!()` call at the bridged + /// chain. + /// + /// Please keep in mind that this should be the name of the `runtime_parachains::paras` + /// pallet from polkadot repository, not the `pallet-bridge-parachains`. #[pallet::constant] type ParasPalletName: Get<&'static str>;