From 756a026e8b9ac6afc4b027337a41a8cba669f95f Mon Sep 17 00:00:00 2001 From: quasisamurai Date: Wed, 6 Sep 2023 12:54:14 +0400 Subject: [PATCH] more precise comments --- packages/neutron-sdk/src/bindings/msg.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/neutron-sdk/src/bindings/msg.rs b/packages/neutron-sdk/src/bindings/msg.rs index 9efa562b..3f26b50a 100644 --- a/packages/neutron-sdk/src/bindings/msg.rs +++ b/packages/neutron-sdk/src/bindings/msg.rs @@ -299,7 +299,7 @@ impl NeutronMsg { } } - /// Basic helper to define a parameter change proposal passed to AdminModule: + /// Basic helper to define an ibc upgrade proposal passed to AdminModule: /// * **proposal** is struct which contains proposal that upgrades network. pub fn submit_upgrade_proposal(proposal: UpgradeProposal) -> Self { NeutronMsg::SubmitAdminProposal { @@ -307,7 +307,7 @@ impl NeutronMsg { } } - /// Basic helper to define a parameter change proposal passed to AdminModule: + /// Basic helper to define an ibc update client change proposal passed to AdminModule: /// * **proposal** is struct which contains proposal updates cliient. pub fn submit_client_update_proposal(proposal: ClientUpdateProposal) -> Self { NeutronMsg::SubmitAdminProposal { @@ -494,9 +494,9 @@ pub struct SudoContractProposal { #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)] #[serde(rename_all = "snake_case")] -/// ProposalExecuteMessage defines the struct for sdk47 compatible update params admin proposal. +/// ProposalExecuteMessage defines the struct for sdk47 compatible admin proposal. pub struct ProposalExecuteMessage { - /// **message** is a json representing a sdk message passed to admin module to execute. + /// **message** is a json representing an sdk message passed to admin module to execute. pub message: String, }