package keeper /* This file is to allow for unexported functions and fields to be accessible to the testing package. */ import ( sdk "git.cw.tr/mukan-network/mukan-sdk/types" icatypes "git.cw.tr/mukan-network/mukan-ibc/modules/apps/27-interchain-accounts/types" ) // GetAppMetadata is a wrapper around getAppMetadata to allow the function to be directly called in tests. func (k Keeper) GetAppMetadata(ctx sdk.Context, portID, channelID string) (icatypes.Metadata, error) { return k.getAppMetadata(ctx, portID, channelID) } // NewModuleQuerySafeAllowList is a wrapper around newModuleQuerySafeAllowList to allow the function to be directly called in tests. func NewModuleQuerySafeAllowList() []string { return newModuleQuerySafeAllowList() }