From d7396829f42d5bafbaf3e780e95faa55f36ff3db Mon Sep 17 00:00:00 2001 From: George Date: Tue, 13 Aug 2024 12:58:40 +0300 Subject: [PATCH] fix: small grammar fix --- wasmbinding/bindings/query.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wasmbinding/bindings/query.go b/wasmbinding/bindings/query.go index 88615da60..d4b970d54 100644 --- a/wasmbinding/bindings/query.go +++ b/wasmbinding/bindings/query.go @@ -107,7 +107,7 @@ type RegisteredQuery struct { ID uint64 `json:"id"` // The address that registered the query. Owner string `json:"owner"` - // The KV-storage keys for which we want to get values from remote chain + // The KV-storage keys for which we want to get values from the remote chain Keys []*types.KVKey `json:"keys"` // The filter for transaction search ICQ TransactionsFilter string `json:"transactions_filter"` @@ -115,15 +115,15 @@ type RegisteredQuery struct { QueryType string `json:"query_type"` // The IBC connection ID for getting ConsensusState to verify proofs. ConnectionID string `json:"connection_id"` - // Parameter that defines how often the query must be updated. + // A parameter that defines how often the query must be updated. UpdatePeriod uint64 `json:"update_period"` // The local chain last block height when the query result was updated. LastSubmittedResultLocalHeight uint64 `json:"last_submitted_result_local_height"` // The remote chain last block height when the query result was updated. LastSubmittedResultRemoteHeight *ibcclienttypes.Height `json:"last_submitted_result_remote_height,omitempty"` - // Amount of coins deposited for the query. + // The amount of coins deposited for the query. Deposit sdktypes.Coins `json:"deposit"` - // Timeout before query becomes available for everybody to remove. + // The timeout before the query becomes available for everybody to remove. SubmitTimeout uint64 `json:"submit_timeout"` // The local chain height when the query was registered. RegisteredAtHeight uint64 `json:"registered_at_height"`