diff --git a/modules/apps/29-fee/types/query.pb.go b/modules/apps/29-fee/types/query.pb.go index 02a958cc5b66..f4f714e9e747 100644 --- a/modules/apps/29-fee/types/query.pb.go +++ b/modules/apps/29-fee/types/query.pb.go @@ -198,7 +198,7 @@ func (m *QueryIncentivizedPacketRequest) GetQueryHeight() uint64 { return 0 } -// QueryIncentivizedPacketsResponse defines the response type for the IncentivizedPacket rpc +// QueryIncentivizedPacketResponse defines the response type for the IncentivizedPacket rpc type QueryIncentivizedPacketResponse struct { // the identified fees for the incentivized packet IncentivizedPacket IdentifiedPacketFees `protobuf:"bytes,1,opt,name=incentivized_packet,json=incentivizedPacket,proto3" json:"incentivized_packet"` @@ -320,7 +320,8 @@ func (m *QueryIncentivizedPacketsForChannelRequest) GetQueryHeight() uint64 { return 0 } -// QueryIncentivizedPacketsResponse defines the response type for the incentivized packets RPC +// QueryIncentivizedPacketsForChannelResponse defines the response type for querying for all incentivized packets +// for a specific channel type QueryIncentivizedPacketsForChannelResponse struct { // Map of all incentivized_packets IncentivizedPackets []*IdentifiedPacketFees `protobuf:"bytes,1,rep,name=incentivized_packets,json=incentivizedPackets,proto3" json:"incentivized_packets,omitempty"` diff --git a/modules/apps/callbacks/testing/simapp/contract_keeper.go b/modules/apps/callbacks/testing/simapp/contract_keeper.go index eaf9f4dca1b7..f493eb8c6009 100644 --- a/modules/apps/callbacks/testing/simapp/contract_keeper.go +++ b/modules/apps/callbacks/testing/simapp/contract_keeper.go @@ -132,7 +132,7 @@ func NewContractKeeper(key storetypes.StoreKey) *ContractKeeper { return k } -// IBCPacketSendCallback increments the stateful entry counter and the send_packet callback counter. +// IBCSendPacketCallback increments the stateful entry counter and the send_packet callback counter. // This function: // - returns MockApplicationCallbackError and consumes half the remaining gas if the contract address is ErrorContract // - Oog panics and consumes all the remaining gas + 1 if the contract address is OogPanicContract diff --git a/modules/apps/transfer/internal/events/events.go b/modules/apps/transfer/internal/events/events.go index 4f1fd0b64f3d..c636819a7965 100644 --- a/modules/apps/transfer/internal/events/events.go +++ b/modules/apps/transfer/internal/events/events.go @@ -94,7 +94,7 @@ func EmitOnAcknowledgementPacketEvent(ctx sdk.Context, packetData types.Fungible } } -// EmitOnTimeoutPacketEvent emits a fungible token packet event in the OnTimeoutPacket callback +// EmitOnTimeoutEvent emits a fungible token packet event in the OnTimeoutPacket callback func EmitOnTimeoutEvent(ctx sdk.Context, packetData types.FungibleTokenPacketDataV2) { jsonTokens := mustMarshalType[types.Tokens](types.Tokens(packetData.Tokens)) diff --git a/modules/core/02-client/migrations/v7/store_test.go b/modules/core/02-client/migrations/v7/store_test.go index 9ef3d995980f..3f4f43b62e9b 100644 --- a/modules/core/02-client/migrations/v7/store_test.go +++ b/modules/core/02-client/migrations/v7/store_test.go @@ -155,7 +155,7 @@ func (suite *MigrationsV7TestSuite) createLocalhostClients() { } } -// assertLocalhostClients asserts that all localhost information has been deleted +// assertNoLocalhostClients asserts that all localhost information has been deleted func (suite *MigrationsV7TestSuite) assertNoLocalhostClients() { for numClients := uint64(0); numClients < numCreations; numClients++ { clientID := v7.Localhost + "-" + strconv.FormatUint(numClients, 10) diff --git a/proto/ibc/applications/fee/v1/query.proto b/proto/ibc/applications/fee/v1/query.proto index 726370ee03fd..116f1fd79f75 100644 --- a/proto/ibc/applications/fee/v1/query.proto +++ b/proto/ibc/applications/fee/v1/query.proto @@ -95,7 +95,7 @@ message QueryIncentivizedPacketRequest { uint64 query_height = 2; } -// QueryIncentivizedPacketsResponse defines the response type for the IncentivizedPacket rpc +// QueryIncentivizedPacketResponse defines the response type for the IncentivizedPacket rpc message QueryIncentivizedPacketResponse { // the identified fees for the incentivized packet ibc.applications.fee.v1.IdentifiedPacketFees incentivized_packet = 1 [(gogoproto.nullable) = false]; @@ -112,7 +112,8 @@ message QueryIncentivizedPacketsForChannelRequest { uint64 query_height = 4; } -// QueryIncentivizedPacketsResponse defines the response type for the incentivized packets RPC +// QueryIncentivizedPacketsForChannelResponse defines the response type for querying for all incentivized packets +// for a specific channel message QueryIncentivizedPacketsForChannelResponse { // Map of all incentivized_packets repeated ibc.applications.fee.v1.IdentifiedPacketFees incentivized_packets = 1;