Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: small grammar fix #762

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading