Skip to content

Commit

Permalink
chore: fix some function names in comment
Browse files Browse the repository at this point in the history
Signed-off-by: soonsouth <[email protected]>
  • Loading branch information
soonsouth committed Dec 10, 2024
1 parent f627b43 commit 0ebfbdc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/core/04-channel/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ func (suite *KeeperTestSuite) UpgradeChannel(path *ibctesting.Path, upgradeField
suite.Require().NoError(err)
}

// sendMockPacket sends a packet from source to dest and acknowledges it on the source (completing the packet lifecycle)
// sendMockPackets sends a packet from source to dest and acknowledges it on the source (completing the packet lifecycle)
// if acknowledge is true. If acknowledge is false, then the packet will be sent, but timed out.
// Question(jim): find a nicer home for this?
func (suite *KeeperTestSuite) sendMockPackets(path *ibctesting.Path, numPackets int, acknowledge bool) {
Expand Down
2 changes: 1 addition & 1 deletion modules/light-clients/08-wasm/internal/types/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (s ClientRecoveryStore) CacheWrapWithTrace(w io.Writer, tc storetypes.Trace
return cachekv.NewStore(tracekv.NewStore(s, w, tc))
}

// getStore returns the types to be used for the given key and a boolean flag indicating if that types was found.
// GetStore returns the types to be used for the given key and a boolean flag indicating if that types was found.
// If the key is prefixed with "subject/", the subjectStore is returned. If the key is prefixed with "substitute/",
// the substituteStore is returned.
//
Expand Down
2 changes: 1 addition & 1 deletion modules/light-clients/08-wasm/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (k Keeper) getQueryPlugins() QueryPlugins {
return k.queryPlugins
}

// SetQueryPlugins sets the plugins.
// setQueryPlugins sets the plugins.
func (k *Keeper) setQueryPlugins(plugins QueryPlugins) {
k.queryPlugins = plugins
}
Expand Down

0 comments on commit 0ebfbdc

Please sign in to comment.