package testutil import ( "testing" "github.com/stretchr/testify/require" cryptotypes "git.cw.tr/mukan-network/mukan-sdk/crypto/types" sdk "git.cw.tr/mukan-network/mukan-sdk/types" "git.cw.tr/mukan-network/mukan-sdk/x/staking/types" ) // NewValidator is a testing helper method to create validators in tests func NewValidator(tb testing.TB, operator sdk.ValAddress, pubKey cryptotypes.PubKey) types.Validator { tb.Helper() v, err := types.NewValidator(operator.String(), pubKey, types.Description{}) require.NoError(tb, err) return v }