Skip to content

Commit

Permalink
Merge pull request #762 from neutron-org/fix/small-grammar-fix
Browse files Browse the repository at this point in the history
fix: small grammar fix
  • Loading branch information
pr0n00gler authored Nov 18, 2024
2 parents 954660e + d739682 commit 170ad88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wasmbinding/bindings/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,23 +107,23 @@ 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"`
// The query type identifier (i.e. 'kv' or 'tx' for now).
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"`
Expand Down

0 comments on commit 170ad88

Please sign in to comment.