Skip to content

Commit 7041e2b

Browse files
[stable2407] Backport #6645 (#6655)
Backport #6645 into `stable2407` from bkontur. See the [documentation](https://github.com/paritytech/polkadot-sdk/blob/master/docs/BACKPORT.md) on how to use this bot. <!-- # To be used by other automation, do not modify: original-pr-number: #${pull_number} --> --------- Co-authored-by: Branislav Kontur <bkontur@gmail.com>
1 parent b98e0b3 commit 7041e2b

File tree

8 files changed

+246
-53
lines changed

8 files changed

+246
-53
lines changed

polkadot/grafana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ and issue statement or initiate dispute.
9090
- **Assignment delay tranches**. Approval voting is designed such that validators assigned to check a specific
9191
candidate are split up into equal delay tranches (0.5 seconds each). All validators checks are ordered by the delay
9292
tranche index. Early tranches of validators have the opportunity to check the candidate first before later tranches
93-
that act as as backups in case of no shows.
93+
that act as backups in case of no shows.

polkadot/grafana/parachains/status.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@
14051405
"type": "prometheus",
14061406
"uid": "$data_source"
14071407
},
1408-
"description": "Approval voting requires that validators which are assigned to check a specific \ncandidate are split up into delay tranches (0.5s each). Then, all validators checks are ordered by the delay \ntranche index. Early tranches of validators will check the candidate first and later tranches act as as backups in case of no shows.",
1408+
"description": "Approval voting requires that validators which are assigned to check a specific \ncandidate are split up into delay tranches (0.5s each). Then, all validators checks are ordered by the delay \ntranche index. Early tranches of validators will check the candidate first and later tranches act as backups in case of no shows.",
14091409
"gridPos": {
14101410
"h": 9,
14111411
"w": 18,

polkadot/xcm/src/v3/traits.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,13 +535,13 @@ impl SendXcm for Tuple {
535535
}
536536

537537
/// Convenience function for using a `SendXcm` implementation. Just interprets the `dest` and wraps
538-
/// both in `Some` before passing them as as mutable references into `T::send_xcm`.
538+
/// both in `Some` before passing them as mutable references into `T::send_xcm`.
539539
pub fn validate_send<T: SendXcm>(dest: MultiLocation, msg: Xcm<()>) -> SendResult<T::Ticket> {
540540
T::validate(&mut Some(dest), &mut Some(msg))
541541
}
542542

543543
/// Convenience function for using a `SendXcm` implementation. Just interprets the `dest` and wraps
544-
/// both in `Some` before passing them as as mutable references into `T::send_xcm`.
544+
/// both in `Some` before passing them as mutable references into `T::send_xcm`.
545545
///
546546
/// Returns either `Ok` with the price of the delivery, or `Err` with the reason why the message
547547
/// could not be sent.

polkadot/xcm/src/v4/traits.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,13 @@ impl SendXcm for Tuple {
289289
}
290290

291291
/// Convenience function for using a `SendXcm` implementation. Just interprets the `dest` and wraps
292-
/// both in `Some` before passing them as as mutable references into `T::send_xcm`.
292+
/// both in `Some` before passing them as mutable references into `T::send_xcm`.
293293
pub fn validate_send<T: SendXcm>(dest: Location, msg: Xcm<()>) -> SendResult<T::Ticket> {
294294
T::validate(&mut Some(dest), &mut Some(msg))
295295
}
296296

297297
/// Convenience function for using a `SendXcm` implementation. Just interprets the `dest` and wraps
298-
/// both in `Some` before passing them as as mutable references into `T::send_xcm`.
298+
/// both in `Some` before passing them as mutable references into `T::send_xcm`.
299299
///
300300
/// Returns either `Ok` with the price of the delivery, or `Err` with the reason why the message
301301
/// could not be sent.

0 commit comments

Comments
 (0)