update docs on validation_upgrade_frequency (#4460)

This commit is contained in:
joe petrowski
2021-12-03 17:05:35 +01:00
committed by GitHub
parent b081149939
commit 0d69a6ba4c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1095,7 +1095,7 @@ pub struct AbridgedHostConfiguration {
///
/// This parameter affects the upper bound of size of `CandidateCommitments`.
pub hrmp_max_message_num_per_candidate: u32,
/// The minimum frequency at which parachains can update their validation code.
/// The minimum period, in blocks, between which parachains can update their validation code.
pub validation_upgrade_frequency: BlockNumber,
/// The delay, in blocks, before a validation upgrade is applied.
pub validation_upgrade_delay: BlockNumber,
@@ -8,7 +8,7 @@ The internal-to-runtime configuration of the parachain host. This is expected to
```rust
struct HostConfiguration {
/// The minimum frequency at which parachains can update their validation code.
/// The minimum period, in blocks, between which parachains can update their validation code.
pub validation_upgrade_frequency: BlockNumber,
/// The delay, in blocks, before a validation upgrade is applied.
pub validation_upgrade_delay: BlockNumber,
@@ -72,7 +72,7 @@ pub struct HostConfiguration<BlockNumber> {
///
/// This parameter affects the upper bound of size of `CandidateCommitments`.
pub hrmp_max_message_num_per_candidate: u32,
/// The minimum frequency at which parachains can update their validation code.
/// The minimum period, in blocks, between which parachains can update their validation code.
pub validation_upgrade_frequency: BlockNumber,
/// The delay, in blocks, before a validation upgrade is applied.
pub validation_upgrade_delay: BlockNumber,