File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
bridges/bin/runtime-common/src Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ macro_rules! assert_bridge_messages_pallet_types(
101
101
102
102
/// Macro that combines four other macro calls - `assert_chain_types`, `assert_bridge_types`,
103
103
/// `assert_bridge_grandpa_pallet_types` and `assert_bridge_messages_pallet_types`. It may be used
104
- /// at the chain that is implemeting complete standard messages bridge (i.e. with bridge GRANDPA and
105
- /// messages pallets deployed).
104
+ /// at the chain that is implementing complete standard messages bridge (i.e. with bridge GRANDPA
105
+ /// and messages pallets deployed).
106
106
#[ macro_export]
107
107
macro_rules! assert_complete_bridge_types(
108
108
(
Original file line number Diff line number Diff line change @@ -163,13 +163,13 @@ pub mod source {
163
163
#[ derive( RuntimeDebug ) ]
164
164
pub struct FromThisChainMessageVerifier < B > ( PhantomData < B > ) ;
165
165
166
- /// The error message returned from LaneMessageVerifier when outbound lane is disabled.
166
+ /// The error message returned from ` LaneMessageVerifier` when outbound lane is disabled.
167
167
pub const MESSAGE_REJECTED_BY_OUTBOUND_LANE : & str =
168
168
"The outbound message lane has rejected the message." ;
169
- /// The error message returned from LaneMessageVerifier when too many pending messages at the
169
+ /// The error message returned from ` LaneMessageVerifier` when too many pending messages at the
170
170
/// lane.
171
171
pub const TOO_MANY_PENDING_MESSAGES : & str = "Too many pending messages at the lane." ;
172
- /// The error message returned from LaneMessageVerifier when call origin is mismatch.
172
+ /// The error message returned from ` LaneMessageVerifier` when call origin is mismatch.
173
173
pub const BAD_ORIGIN : & str = "Unable to match the source origin to expected target origin." ;
174
174
175
175
impl < B > LaneMessageVerifier < OriginOf < ThisChain < B > > , FromThisChainMessagePayload >
Original file line number Diff line number Diff line change @@ -245,8 +245,8 @@ impl pallet_bridge_relayers::Config for TestRuntime {
245
245
type WeightInfo = ( ) ;
246
246
}
247
247
248
- /// Bridge that is deployed on ThisChain and allows sending/receiving messages to/from
249
- /// BridgedChain.
248
+ /// Bridge that is deployed on ` ThisChain` and allows sending/receiving messages to/from
249
+ /// ` BridgedChain` .
250
250
#[ derive( Debug , PartialEq , Eq ) ]
251
251
pub struct OnThisChainBridge ;
252
252
@@ -260,8 +260,8 @@ impl MessageBridge for OnThisChainBridge {
260
260
type BridgedHeaderChain = pallet_bridge_grandpa:: GrandpaChainHeaders < TestRuntime , ( ) > ;
261
261
}
262
262
263
- /// Bridge that is deployed on BridgedChain and allows sending/receiving messages to/from
264
- /// ThisChain;
263
+ /// Bridge that is deployed on ` BridgedChain` and allows sending/receiving messages to/from
264
+ /// ` ThisChain`.
265
265
#[ derive( Debug , PartialEq , Eq ) ]
266
266
pub struct OnBridgedChainBridge ;
267
267
You can’t perform that action at this time.
0 commit comments