From 476a6a242bb06895419b96221c66c881ca770e4d Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 17 Nov 2023 18:31:16 +0400 Subject: [PATCH] fix comment --- core/src/commands/on_runtime_upgrade.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/commands/on_runtime_upgrade.rs b/core/src/commands/on_runtime_upgrade.rs index 3d6a2de2084..9e9feb50379 100644 --- a/core/src/commands/on_runtime_upgrade.rs +++ b/core/src/commands/on_runtime_upgrade.rs @@ -58,15 +58,12 @@ pub struct Command { pub checks: UpgradeCheckSelect, /// Whether to disable weight warnings, useful if the runtime is for a relay chain. - /// - /// This is used to adjust the behavior of weight measurement warnings. #[clap(long, default_value = "false", default_missing_value = "true")] pub no_weight_warnings: bool, /// Whether to enforce the new runtime `spec_version` is greater or equal to the existing /// `spec_version`. #[clap(long, default_value = "true", default_missing_value = "true")] - pub check_spec_version: bool, /// Whether to disable migration idempotency checks #[clap(long, default_value = "false", default_missing_value = "true")]