Skip to content

Commit

Permalink
chore: fix function names (#7040)
Browse files Browse the repository at this point in the history
* chore: fix function names

Signed-off-by: pengbanban <[email protected]>

* Update modules/apps/transfer/keeper/export_test.go

Co-authored-by: Nikolas De Giorgis <[email protected]>

---------

Signed-off-by: pengbanban <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
Co-authored-by: Nikolas De Giorgis <[email protected]>
  • Loading branch information
3 people authored Aug 4, 2024
1 parent f4eba71 commit 3111025
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/tests/transfer/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func (s *TransferTestSuite) TestMsgTransfer_Succeeds_Nonincentivized() {
// }
}

// TestMsgTransfer_Succeeds_MultiDenom will test sending successful IBC transfers from chainA to chainB.
// TestMsgTransfer_Succeeds_Nonincentivized_MultiDenom will test sending successful IBC transfers from chainA to chainB.
// A multidenom transfer with native chainB tokens and IBC tokens from chainA is executed from chainB to chainA.
func (s *TransferTestSuite) TestMsgTransfer_Succeeds_Nonincentivized_MultiDenom() {
t := s.T()
Expand Down
2 changes: 1 addition & 1 deletion modules/apps/callbacks/testing/simapp/contract_keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (k ContractKeeper) IncrementStateEntryCounter(ctx sdk.Context) {
k.SetStateEntryCounter(ctx, count+1)
}

// NewKeeper creates a new mock ContractKeeper.
// NewContractKeeper creates a new mock ContractKeeper.
func NewContractKeeper(key storetypes.StoreKey) *ContractKeeper {
k := &ContractKeeper{
key: key,
Expand Down
2 changes: 1 addition & 1 deletion modules/apps/transfer/keeper/export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"
)

// SetDenomTraces is a wrapper around iterateDenomTraces for testing purposes.
// SetDenomTrace is a wrapper around setDenomTrace for testing purposes.
func (k Keeper) SetDenomTrace(ctx sdk.Context, denomTrace internaltypes.DenomTrace) {
k.setDenomTrace(ctx, denomTrace)
}
Expand Down

0 comments on commit 3111025

Please sign in to comment.