From 03daff8e369d375c34690653063104a1f097bb0b Mon Sep 17 00:00:00 2001 From: JesseAbram <33698952+JesseAbram@users.noreply.github.com> Date: Thu, 12 Sep 2024 08:16:48 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: peg --- crates/test-cli/src/lib.rs | 2 +- pallets/programs/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/test-cli/src/lib.rs b/crates/test-cli/src/lib.rs index b8b314a6b..78508a457 100644 --- a/crates/test-cli/src/lib.rs +++ b/crates/test-cli/src/lib.rs @@ -126,7 +126,7 @@ enum CliCommand { config_interface_file: Option, /// The path to a file containing the program aux interface (defaults to empty) aux_data_interface_file: Option, - /// The version number of the program you compiled with + /// The version number of the program's runtime you compiled with program_version_number: Option, /// The mnemonic to use for the call #[arg(short, long)] diff --git a/pallets/programs/src/lib.rs b/pallets/programs/src/lib.rs index 658add46c..e3361be4e 100644 --- a/pallets/programs/src/lib.rs +++ b/pallets/programs/src/lib.rs @@ -144,7 +144,7 @@ pub mod pallet { pub deployer: AccountId, /// Accounts that use this program pub ref_counter: u128, - /// The user submitted version number of the program + /// The user submitted version number of the program's runtime /// It tells the TSS what runtime to use pub version_number: u8, }