keeper

package
v0.0.0-...-3a28d7b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 1, 2023 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Overview

Package keeper is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockAccountKeeper

type MockAccountKeeper struct {
	// contains filtered or unexported fields
}

MockAccountKeeper is a mock of AccountKeeper interface.

func NewMockAccountKeeper

func NewMockAccountKeeper(ctrl *gomock.Controller) *MockAccountKeeper

NewMockAccountKeeper creates a new mock instance.

func (*MockAccountKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockAccountKeeper) GetModuleAccount

func (m *MockAccountKeeper) GetModuleAccount(ctx types0.Context, name string) types1.ModuleAccountI

GetModuleAccount mocks base method.

type MockAccountKeeperMockRecorder

type MockAccountKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockAccountKeeperMockRecorder is the mock recorder for MockAccountKeeper.

func (*MockAccountKeeperMockRecorder) GetModuleAccount

func (mr *MockAccountKeeperMockRecorder) GetModuleAccount(ctx, name interface{}) *gomock.Call

GetModuleAccount indicates an expected call of GetModuleAccount.

type MockBankKeeper

type MockBankKeeper struct {
	// contains filtered or unexported fields
}

MockBankKeeper is a mock of BankKeeper interface.

func NewMockBankKeeper

func NewMockBankKeeper(ctrl *gomock.Controller) *MockBankKeeper

NewMockBankKeeper creates a new mock instance.

func (*MockBankKeeper) BurnCoins

func (m *MockBankKeeper) BurnCoins(ctx types0.Context, name string, amt types0.Coins) error

BurnCoins mocks base method.

func (*MockBankKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockBankKeeper) GetAllBalances

func (m *MockBankKeeper) GetAllBalances(ctx types0.Context, addr types0.AccAddress) types0.Coins

GetAllBalances mocks base method.

func (*MockBankKeeper) GetBalance

func (m *MockBankKeeper) GetBalance(ctx types0.Context, addr types0.AccAddress, denom string) types0.Coin

GetBalance mocks base method.

func (*MockBankKeeper) MintCoins

func (m *MockBankKeeper) MintCoins(ctx types0.Context, moduleName string, amounts types0.Coins) error

MintCoins mocks base method.

func (*MockBankKeeper) SendCoinsFromAccountToModule

func (m *MockBankKeeper) SendCoinsFromAccountToModule(ctx types0.Context, senderAddr types0.AccAddress, recipientModule string, amt types0.Coins) error

SendCoinsFromAccountToModule mocks base method.

func (*MockBankKeeper) SendCoinsFromModuleToAccount

func (m *MockBankKeeper) SendCoinsFromModuleToAccount(ctx types0.Context, senderModule string, recipientAddr types0.AccAddress, amt types0.Coins) error

SendCoinsFromModuleToAccount mocks base method.

func (*MockBankKeeper) SendCoinsFromModuleToModule

func (m *MockBankKeeper) SendCoinsFromModuleToModule(ctx types0.Context, senderModule, recipientModule string, amt types0.Coins) error

SendCoinsFromModuleToModule mocks base method.

type MockBankKeeperMockRecorder

type MockBankKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockBankKeeperMockRecorder is the mock recorder for MockBankKeeper.

func (*MockBankKeeperMockRecorder) BurnCoins

func (mr *MockBankKeeperMockRecorder) BurnCoins(ctx, name, amt interface{}) *gomock.Call

BurnCoins indicates an expected call of BurnCoins.

func (*MockBankKeeperMockRecorder) GetAllBalances

func (mr *MockBankKeeperMockRecorder) GetAllBalances(ctx, addr interface{}) *gomock.Call

GetAllBalances indicates an expected call of GetAllBalances.

func (*MockBankKeeperMockRecorder) GetBalance

func (mr *MockBankKeeperMockRecorder) GetBalance(ctx, addr, denom interface{}) *gomock.Call

GetBalance indicates an expected call of GetBalance.

func (*MockBankKeeperMockRecorder) MintCoins

func (mr *MockBankKeeperMockRecorder) MintCoins(ctx, moduleName, amounts interface{}) *gomock.Call

MintCoins indicates an expected call of MintCoins.

func (*MockBankKeeperMockRecorder) SendCoinsFromAccountToModule

func (mr *MockBankKeeperMockRecorder) SendCoinsFromAccountToModule(ctx, senderAddr, recipientModule, amt interface{}) *gomock.Call

SendCoinsFromAccountToModule indicates an expected call of SendCoinsFromAccountToModule.

func (*MockBankKeeperMockRecorder) SendCoinsFromModuleToAccount

func (mr *MockBankKeeperMockRecorder) SendCoinsFromModuleToAccount(ctx, senderModule, recipientAddr, amt interface{}) *gomock.Call

SendCoinsFromModuleToAccount indicates an expected call of SendCoinsFromModuleToAccount.

func (*MockBankKeeperMockRecorder) SendCoinsFromModuleToModule

func (mr *MockBankKeeperMockRecorder) SendCoinsFromModuleToModule(ctx, senderModule, recipientModule, amt interface{}) *gomock.Call

SendCoinsFromModuleToModule indicates an expected call of SendCoinsFromModuleToModule.

type MockChannelKeeper

type MockChannelKeeper struct {
	// contains filtered or unexported fields
}

MockChannelKeeper is a mock of ChannelKeeper interface.

func NewMockChannelKeeper

func NewMockChannelKeeper(ctrl *gomock.Controller) *MockChannelKeeper

NewMockChannelKeeper creates a new mock instance.

func (*MockChannelKeeper) ChanCloseInit

func (m *MockChannelKeeper) ChanCloseInit(ctx types0.Context, portID, channelID string, chanCap *types2.Capability) error

ChanCloseInit mocks base method.

func (*MockChannelKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockChannelKeeper) GetChannel

func (m *MockChannelKeeper) GetChannel(ctx types0.Context, srcPort, srcChan string) (types9.Channel, bool)

GetChannel mocks base method.

func (*MockChannelKeeper) GetNextSequenceSend

func (m *MockChannelKeeper) GetNextSequenceSend(ctx types0.Context, portID, channelID string) (uint64, bool)

GetNextSequenceSend mocks base method.

func (*MockChannelKeeper) SendPacket

func (m *MockChannelKeeper) SendPacket(ctx types0.Context, channelCap *types2.Capability, sourcePort, sourceChannel string, timeoutHeight types7.Height, timeoutTimestamp uint64, data []byte) (uint64, error)

SendPacket mocks base method.

func (*MockChannelKeeper) WriteAcknowledgement

func (m *MockChannelKeeper) WriteAcknowledgement(ctx types0.Context, chanCap *types2.Capability, packet exported.PacketI, acknowledgement exported.Acknowledgement) error

WriteAcknowledgement mocks base method.

type MockChannelKeeperMockRecorder

type MockChannelKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockChannelKeeperMockRecorder is the mock recorder for MockChannelKeeper.

func (*MockChannelKeeperMockRecorder) ChanCloseInit

func (mr *MockChannelKeeperMockRecorder) ChanCloseInit(ctx, portID, channelID, chanCap interface{}) *gomock.Call

ChanCloseInit indicates an expected call of ChanCloseInit.

func (*MockChannelKeeperMockRecorder) GetChannel

func (mr *MockChannelKeeperMockRecorder) GetChannel(ctx, srcPort, srcChan interface{}) *gomock.Call

GetChannel indicates an expected call of GetChannel.

func (*MockChannelKeeperMockRecorder) GetNextSequenceSend

func (mr *MockChannelKeeperMockRecorder) GetNextSequenceSend(ctx, portID, channelID interface{}) *gomock.Call

GetNextSequenceSend indicates an expected call of GetNextSequenceSend.

func (*MockChannelKeeperMockRecorder) SendPacket

func (mr *MockChannelKeeperMockRecorder) SendPacket(ctx, channelCap, sourcePort, sourceChannel, timeoutHeight, timeoutTimestamp, data interface{}) *gomock.Call

SendPacket indicates an expected call of SendPacket.

func (*MockChannelKeeperMockRecorder) WriteAcknowledgement

func (mr *MockChannelKeeperMockRecorder) WriteAcknowledgement(ctx, chanCap, packet, acknowledgement interface{}) *gomock.Call

WriteAcknowledgement indicates an expected call of WriteAcknowledgement.

type MockClientKeeper

type MockClientKeeper struct {
	// contains filtered or unexported fields
}

MockClientKeeper is a mock of ClientKeeper interface.

func NewMockClientKeeper

func NewMockClientKeeper(ctrl *gomock.Controller) *MockClientKeeper

NewMockClientKeeper creates a new mock instance.

func (*MockClientKeeper) CreateClient

func (m *MockClientKeeper) CreateClient(ctx types0.Context, clientState exported.ClientState, consensusState exported.ConsensusState) (string, error)

CreateClient mocks base method.

func (*MockClientKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockClientKeeper) GetClientState

func (m *MockClientKeeper) GetClientState(ctx types0.Context, clientID string) (exported.ClientState, bool)

GetClientState mocks base method.

func (*MockClientKeeper) GetLatestClientConsensusState

func (m *MockClientKeeper) GetLatestClientConsensusState(ctx types0.Context, clientID string) (exported.ConsensusState, bool)

GetLatestClientConsensusState mocks base method.

func (*MockClientKeeper) GetSelfConsensusState

func (m *MockClientKeeper) GetSelfConsensusState(ctx types0.Context, height exported.Height) (exported.ConsensusState, error)

GetSelfConsensusState mocks base method.

type MockClientKeeperMockRecorder

type MockClientKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockClientKeeperMockRecorder is the mock recorder for MockClientKeeper.

func (*MockClientKeeperMockRecorder) CreateClient

func (mr *MockClientKeeperMockRecorder) CreateClient(ctx, clientState, consensusState interface{}) *gomock.Call

CreateClient indicates an expected call of CreateClient.

func (*MockClientKeeperMockRecorder) GetClientState

func (mr *MockClientKeeperMockRecorder) GetClientState(ctx, clientID interface{}) *gomock.Call

GetClientState indicates an expected call of GetClientState.

func (*MockClientKeeperMockRecorder) GetLatestClientConsensusState

func (mr *MockClientKeeperMockRecorder) GetLatestClientConsensusState(ctx, clientID interface{}) *gomock.Call

GetLatestClientConsensusState indicates an expected call of GetLatestClientConsensusState.

func (*MockClientKeeperMockRecorder) GetSelfConsensusState

func (mr *MockClientKeeperMockRecorder) GetSelfConsensusState(ctx, height interface{}) *gomock.Call

GetSelfConsensusState indicates an expected call of GetSelfConsensusState.

type MockConnectionKeeper

type MockConnectionKeeper struct {
	// contains filtered or unexported fields
}

MockConnectionKeeper is a mock of ConnectionKeeper interface.

func NewMockConnectionKeeper

func NewMockConnectionKeeper(ctrl *gomock.Controller) *MockConnectionKeeper

NewMockConnectionKeeper creates a new mock instance.

func (*MockConnectionKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockConnectionKeeper) GetConnection

func (m *MockConnectionKeeper) GetConnection(ctx types0.Context, connectionID string) (types8.ConnectionEnd, bool)

GetConnection mocks base method.

type MockConnectionKeeperMockRecorder

type MockConnectionKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockConnectionKeeperMockRecorder is the mock recorder for MockConnectionKeeper.

func (*MockConnectionKeeperMockRecorder) GetConnection

func (mr *MockConnectionKeeperMockRecorder) GetConnection(ctx, connectionID interface{}) *gomock.Call

GetConnection indicates an expected call of GetConnection.

type MockEvidenceKeeper

type MockEvidenceKeeper struct {
	// contains filtered or unexported fields
}

MockEvidenceKeeper is a mock of EvidenceKeeper interface.

func NewMockEvidenceKeeper

func NewMockEvidenceKeeper(ctrl *gomock.Controller) *MockEvidenceKeeper

NewMockEvidenceKeeper creates a new mock instance.

func (*MockEvidenceKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockEvidenceKeeper) HandleEquivocationEvidence

func (m *MockEvidenceKeeper) HandleEquivocationEvidence(ctx types0.Context, evidence *types3.Equivocation)

HandleEquivocationEvidence mocks base method.

type MockEvidenceKeeperMockRecorder

type MockEvidenceKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockEvidenceKeeperMockRecorder is the mock recorder for MockEvidenceKeeper.

func (*MockEvidenceKeeperMockRecorder) HandleEquivocationEvidence

func (mr *MockEvidenceKeeperMockRecorder) HandleEquivocationEvidence(ctx, evidence interface{}) *gomock.Call

HandleEquivocationEvidence indicates an expected call of HandleEquivocationEvidence.

type MockIBCTransferKeeper

type MockIBCTransferKeeper struct {
	// contains filtered or unexported fields
}

MockIBCTransferKeeper is a mock of IBCTransferKeeper interface.

func NewMockIBCTransferKeeper

func NewMockIBCTransferKeeper(ctrl *gomock.Controller) *MockIBCTransferKeeper

NewMockIBCTransferKeeper creates a new mock instance.

func (*MockIBCTransferKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockIBCTransferKeeper) Transfer

Transfer mocks base method.

type MockIBCTransferKeeperMockRecorder

type MockIBCTransferKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockIBCTransferKeeperMockRecorder is the mock recorder for MockIBCTransferKeeper.

func (*MockIBCTransferKeeperMockRecorder) Transfer

func (mr *MockIBCTransferKeeperMockRecorder) Transfer(arg0, arg1 interface{}) *gomock.Call

Transfer indicates an expected call of Transfer.

type MockMTStakingKeeper

type MockMTStakingKeeper struct {
	// contains filtered or unexported fields
}

MockMTStakingKeeper is a mock of MTStakingKeeper interface.

func NewMockMTStakingKeeper

func NewMockMTStakingKeeper(ctrl *gomock.Controller) *MockMTStakingKeeper

NewMockMTStakingKeeper creates a new mock instance.

func (*MockMTStakingKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockMTStakingKeeper) InstantSlash

func (m *MockMTStakingKeeper) InstantSlash(ctx types0.Context, valAddr types0.ValAddress, delegator types0.AccAddress, slashCoin types0.Coin) error

InstantSlash mocks base method.

func (*MockMTStakingKeeper) MTStakingDelegate

func (m *MockMTStakingKeeper) MTStakingDelegate(ctx types0.Context, delegatorAccAddr types0.AccAddress, validatorAddr types0.ValAddress, balance types0.Coin) (math.Int, error)

MTStakingDelegate mocks base method.

func (*MockMTStakingKeeper) Unbond

func (m *MockMTStakingKeeper) Unbond(ctx types0.Context, delAddr types0.AccAddress, valAddr types0.ValAddress, token types0.Coin) error

Unbond mocks base method.

func (*MockMTStakingKeeper) WithdrawReward

func (m *MockMTStakingKeeper) WithdrawReward(ctx types0.Context, valAddr types0.ValAddress, stakeDenom string, delegator types0.AccAddress) (types0.Coin, error)

WithdrawReward mocks base method.

type MockMTStakingKeeperMockRecorder

type MockMTStakingKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockMTStakingKeeperMockRecorder is the mock recorder for MockMTStakingKeeper.

func (*MockMTStakingKeeperMockRecorder) InstantSlash

func (mr *MockMTStakingKeeperMockRecorder) InstantSlash(ctx, valAddr, delegator, slashCoin interface{}) *gomock.Call

InstantSlash indicates an expected call of InstantSlash.

func (*MockMTStakingKeeperMockRecorder) MTStakingDelegate

func (mr *MockMTStakingKeeperMockRecorder) MTStakingDelegate(ctx, delegatorAccAddr, validatorAddr, balance interface{}) *gomock.Call

MTStakingDelegate indicates an expected call of MTStakingDelegate.

func (*MockMTStakingKeeperMockRecorder) Unbond

func (mr *MockMTStakingKeeperMockRecorder) Unbond(ctx, delAddr, valAddr, token interface{}) *gomock.Call

Unbond indicates an expected call of Unbond.

func (*MockMTStakingKeeperMockRecorder) WithdrawReward

func (mr *MockMTStakingKeeperMockRecorder) WithdrawReward(ctx, valAddr, stakeDenom, delegator interface{}) *gomock.Call

WithdrawReward indicates an expected call of WithdrawReward.

type MockPortKeeper

type MockPortKeeper struct {
	// contains filtered or unexported fields
}

MockPortKeeper is a mock of PortKeeper interface.

func NewMockPortKeeper

func NewMockPortKeeper(ctrl *gomock.Controller) *MockPortKeeper

NewMockPortKeeper creates a new mock instance.

func (*MockPortKeeper) BindPort

func (m *MockPortKeeper) BindPort(ctx types0.Context, portID string) *types2.Capability

BindPort mocks base method.

func (*MockPortKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

type MockPortKeeperMockRecorder

type MockPortKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockPortKeeperMockRecorder is the mock recorder for MockPortKeeper.

func (*MockPortKeeperMockRecorder) BindPort

func (mr *MockPortKeeperMockRecorder) BindPort(ctx, portID interface{}) *gomock.Call

BindPort indicates an expected call of BindPort.

type MockScopedKeeper

type MockScopedKeeper struct {
	// contains filtered or unexported fields
}

MockScopedKeeper is a mock of ScopedKeeper interface.

func NewMockScopedKeeper

func NewMockScopedKeeper(ctrl *gomock.Controller) *MockScopedKeeper

NewMockScopedKeeper creates a new mock instance.

func (*MockScopedKeeper) AuthenticateCapability

func (m *MockScopedKeeper) AuthenticateCapability(ctx types0.Context, cap *types2.Capability, name string) bool

AuthenticateCapability mocks base method.

func (*MockScopedKeeper) ClaimCapability

func (m *MockScopedKeeper) ClaimCapability(ctx types0.Context, cap *types2.Capability, name string) error

ClaimCapability mocks base method.

func (*MockScopedKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockScopedKeeper) GetCapability

func (m *MockScopedKeeper) GetCapability(ctx types0.Context, name string) (*types2.Capability, bool)

GetCapability mocks base method.

type MockScopedKeeperMockRecorder

type MockScopedKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockScopedKeeperMockRecorder is the mock recorder for MockScopedKeeper.

func (*MockScopedKeeperMockRecorder) AuthenticateCapability

func (mr *MockScopedKeeperMockRecorder) AuthenticateCapability(ctx, cap, name interface{}) *gomock.Call

AuthenticateCapability indicates an expected call of AuthenticateCapability.

func (*MockScopedKeeperMockRecorder) ClaimCapability

func (mr *MockScopedKeeperMockRecorder) ClaimCapability(ctx, cap, name interface{}) *gomock.Call

ClaimCapability indicates an expected call of ClaimCapability.

func (*MockScopedKeeperMockRecorder) GetCapability

func (mr *MockScopedKeeperMockRecorder) GetCapability(ctx, name interface{}) *gomock.Call

GetCapability indicates an expected call of GetCapability.

type MockSlashingKeeper

type MockSlashingKeeper struct {
	// contains filtered or unexported fields
}

MockSlashingKeeper is a mock of SlashingKeeper interface.

func NewMockSlashingKeeper

func NewMockSlashingKeeper(ctrl *gomock.Controller) *MockSlashingKeeper

NewMockSlashingKeeper creates a new mock instance.

func (*MockSlashingKeeper) DowntimeJailDuration

func (m *MockSlashingKeeper) DowntimeJailDuration(arg0 types0.Context) time.Duration

DowntimeJailDuration mocks base method.

func (*MockSlashingKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockSlashingKeeper) GetValidatorSigningInfo

func (m *MockSlashingKeeper) GetValidatorSigningInfo(ctx types0.Context, address types0.ConsAddress) (types4.ValidatorSigningInfo, bool)

GetValidatorSigningInfo mocks base method.

func (*MockSlashingKeeper) IsTombstoned

func (m *MockSlashingKeeper) IsTombstoned(arg0 types0.Context, arg1 types0.ConsAddress) bool

IsTombstoned mocks base method.

func (*MockSlashingKeeper) JailUntil

func (m *MockSlashingKeeper) JailUntil(arg0 types0.Context, arg1 types0.ConsAddress, arg2 time.Time)

JailUntil mocks base method.

func (*MockSlashingKeeper) SlashFractionDoubleSign

func (m *MockSlashingKeeper) SlashFractionDoubleSign(ctx types0.Context) types0.Dec

SlashFractionDoubleSign mocks base method.

func (*MockSlashingKeeper) SlashFractionDowntime

func (m *MockSlashingKeeper) SlashFractionDowntime(arg0 types0.Context) types0.Dec

SlashFractionDowntime mocks base method.

func (*MockSlashingKeeper) Tombstone

func (m *MockSlashingKeeper) Tombstone(arg0 types0.Context, arg1 types0.ConsAddress)

Tombstone mocks base method.

type MockSlashingKeeperMockRecorder

type MockSlashingKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockSlashingKeeperMockRecorder is the mock recorder for MockSlashingKeeper.

func (*MockSlashingKeeperMockRecorder) DowntimeJailDuration

func (mr *MockSlashingKeeperMockRecorder) DowntimeJailDuration(arg0 interface{}) *gomock.Call

DowntimeJailDuration indicates an expected call of DowntimeJailDuration.

func (*MockSlashingKeeperMockRecorder) GetValidatorSigningInfo

func (mr *MockSlashingKeeperMockRecorder) GetValidatorSigningInfo(ctx, address interface{}) *gomock.Call

GetValidatorSigningInfo indicates an expected call of GetValidatorSigningInfo.

func (*MockSlashingKeeperMockRecorder) IsTombstoned

func (mr *MockSlashingKeeperMockRecorder) IsTombstoned(arg0, arg1 interface{}) *gomock.Call

IsTombstoned indicates an expected call of IsTombstoned.

func (*MockSlashingKeeperMockRecorder) JailUntil

func (mr *MockSlashingKeeperMockRecorder) JailUntil(arg0, arg1, arg2 interface{}) *gomock.Call

JailUntil indicates an expected call of JailUntil.

func (*MockSlashingKeeperMockRecorder) SlashFractionDoubleSign

func (mr *MockSlashingKeeperMockRecorder) SlashFractionDoubleSign(ctx interface{}) *gomock.Call

SlashFractionDoubleSign indicates an expected call of SlashFractionDoubleSign.

func (*MockSlashingKeeperMockRecorder) SlashFractionDowntime

func (mr *MockSlashingKeeperMockRecorder) SlashFractionDowntime(arg0 interface{}) *gomock.Call

SlashFractionDowntime indicates an expected call of SlashFractionDowntime.

func (*MockSlashingKeeperMockRecorder) Tombstone

func (mr *MockSlashingKeeperMockRecorder) Tombstone(arg0, arg1 interface{}) *gomock.Call

Tombstone indicates an expected call of Tombstone.

type MockStakingKeeper

type MockStakingKeeper struct {
	// contains filtered or unexported fields
}

MockStakingKeeper is a mock of StakingKeeper interface.

func NewMockStakingKeeper

func NewMockStakingKeeper(ctrl *gomock.Controller) *MockStakingKeeper

NewMockStakingKeeper creates a new mock instance.

func (*MockStakingKeeper) BondDenom

func (m *MockStakingKeeper) BondDenom(ctx types0.Context) string

BondDenom mocks base method.

func (*MockStakingKeeper) Delegation

Delegation mocks base method.

func (*MockStakingKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockStakingKeeper) GetLastTotalPower

func (m *MockStakingKeeper) GetLastTotalPower(ctx types0.Context) math.Int

GetLastTotalPower mocks base method.

func (*MockStakingKeeper) GetLastValidatorPower

func (m *MockStakingKeeper) GetLastValidatorPower(ctx types0.Context, operator types0.ValAddress) int64

GetLastValidatorPower mocks base method.

func (*MockStakingKeeper) GetLastValidators

func (m *MockStakingKeeper) GetLastValidators(ctx types0.Context) []types5.Validator

GetLastValidators mocks base method.

func (*MockStakingKeeper) GetParams

func (m *MockStakingKeeper) GetParams(ctx types0.Context) types5.Params

GetParams mocks base method.

func (*MockStakingKeeper) GetValidator

func (m *MockStakingKeeper) GetValidator(ctx types0.Context, addr types0.ValAddress) (types5.Validator, bool)

GetValidator mocks base method.

func (*MockStakingKeeper) GetValidatorByConsAddr

func (m *MockStakingKeeper) GetValidatorByConsAddr(ctx types0.Context, consAddr types0.ConsAddress) (types5.Validator, bool)

GetValidatorByConsAddr mocks base method.

func (*MockStakingKeeper) GetValidatorUpdates

func (m *MockStakingKeeper) GetValidatorUpdates(ctx types0.Context) []types.ValidatorUpdate

GetValidatorUpdates mocks base method.

func (*MockStakingKeeper) IsValidatorJailed

func (m *MockStakingKeeper) IsValidatorJailed(ctx types0.Context, addr types0.ConsAddress) bool

IsValidatorJailed mocks base method.

func (*MockStakingKeeper) IterateLastValidatorPowers

func (m *MockStakingKeeper) IterateLastValidatorPowers(ctx types0.Context, cb func(types0.ValAddress, int64) bool)

IterateLastValidatorPowers mocks base method.

func (*MockStakingKeeper) IterateValidators

func (m *MockStakingKeeper) IterateValidators(ctx types0.Context, f func(int64, types5.ValidatorI) bool)

IterateValidators mocks base method.

func (*MockStakingKeeper) Jail

func (m *MockStakingKeeper) Jail(arg0 types0.Context, arg1 types0.ConsAddress)

Jail mocks base method.

func (*MockStakingKeeper) MaxValidators

func (m *MockStakingKeeper) MaxValidators(ctx types0.Context) uint32

MaxValidators mocks base method.

func (*MockStakingKeeper) PowerReduction

func (m *MockStakingKeeper) PowerReduction(ctx types0.Context) math.Int

PowerReduction mocks base method.

func (*MockStakingKeeper) PutUnbondingOnHold

func (m *MockStakingKeeper) PutUnbondingOnHold(ctx types0.Context, id uint64) error

PutUnbondingOnHold mocks base method.

func (*MockStakingKeeper) Slash

func (m *MockStakingKeeper) Slash(arg0 types0.Context, arg1 types0.ConsAddress, arg2, arg3 int64, arg4 types0.Dec) math.Int

Slash mocks base method.

func (*MockStakingKeeper) UnbondingCanComplete

func (m *MockStakingKeeper) UnbondingCanComplete(ctx types0.Context, id uint64) error

UnbondingCanComplete mocks base method.

func (*MockStakingKeeper) UnbondingTime

func (m *MockStakingKeeper) UnbondingTime(ctx types0.Context) time.Duration

UnbondingTime mocks base method.

func (*MockStakingKeeper) Unjail

func (m *MockStakingKeeper) Unjail(ctx types0.Context, addr types0.ConsAddress)

Unjail mocks base method.

func (*MockStakingKeeper) Validator

Validator mocks base method.

func (*MockStakingKeeper) ValidatorByConsAddr

func (m *MockStakingKeeper) ValidatorByConsAddr(ctx types0.Context, consAddr types0.ConsAddress) types5.ValidatorI

ValidatorByConsAddr mocks base method.

type MockStakingKeeperMockRecorder

type MockStakingKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockStakingKeeperMockRecorder is the mock recorder for MockStakingKeeper.

func (*MockStakingKeeperMockRecorder) BondDenom

func (mr *MockStakingKeeperMockRecorder) BondDenom(ctx interface{}) *gomock.Call

BondDenom indicates an expected call of BondDenom.

func (*MockStakingKeeperMockRecorder) Delegation

func (mr *MockStakingKeeperMockRecorder) Delegation(ctx, addr, valAddr interface{}) *gomock.Call

Delegation indicates an expected call of Delegation.

func (*MockStakingKeeperMockRecorder) GetLastTotalPower

func (mr *MockStakingKeeperMockRecorder) GetLastTotalPower(ctx interface{}) *gomock.Call

GetLastTotalPower indicates an expected call of GetLastTotalPower.

func (*MockStakingKeeperMockRecorder) GetLastValidatorPower

func (mr *MockStakingKeeperMockRecorder) GetLastValidatorPower(ctx, operator interface{}) *gomock.Call

GetLastValidatorPower indicates an expected call of GetLastValidatorPower.

func (*MockStakingKeeperMockRecorder) GetLastValidators

func (mr *MockStakingKeeperMockRecorder) GetLastValidators(ctx interface{}) *gomock.Call

GetLastValidators indicates an expected call of GetLastValidators.

func (*MockStakingKeeperMockRecorder) GetParams

func (mr *MockStakingKeeperMockRecorder) GetParams(ctx interface{}) *gomock.Call

GetParams indicates an expected call of GetParams.

func (*MockStakingKeeperMockRecorder) GetValidator

func (mr *MockStakingKeeperMockRecorder) GetValidator(ctx, addr interface{}) *gomock.Call

GetValidator indicates an expected call of GetValidator.

func (*MockStakingKeeperMockRecorder) GetValidatorByConsAddr

func (mr *MockStakingKeeperMockRecorder) GetValidatorByConsAddr(ctx, consAddr interface{}) *gomock.Call

GetValidatorByConsAddr indicates an expected call of GetValidatorByConsAddr.

func (*MockStakingKeeperMockRecorder) GetValidatorUpdates

func (mr *MockStakingKeeperMockRecorder) GetValidatorUpdates(ctx interface{}) *gomock.Call

GetValidatorUpdates indicates an expected call of GetValidatorUpdates.

func (*MockStakingKeeperMockRecorder) IsValidatorJailed

func (mr *MockStakingKeeperMockRecorder) IsValidatorJailed(ctx, addr interface{}) *gomock.Call

IsValidatorJailed indicates an expected call of IsValidatorJailed.

func (*MockStakingKeeperMockRecorder) IterateLastValidatorPowers

func (mr *MockStakingKeeperMockRecorder) IterateLastValidatorPowers(ctx, cb interface{}) *gomock.Call

IterateLastValidatorPowers indicates an expected call of IterateLastValidatorPowers.

func (*MockStakingKeeperMockRecorder) IterateValidators

func (mr *MockStakingKeeperMockRecorder) IterateValidators(ctx, f interface{}) *gomock.Call

IterateValidators indicates an expected call of IterateValidators.

func (*MockStakingKeeperMockRecorder) Jail

func (mr *MockStakingKeeperMockRecorder) Jail(arg0, arg1 interface{}) *gomock.Call

Jail indicates an expected call of Jail.

func (*MockStakingKeeperMockRecorder) MaxValidators

func (mr *MockStakingKeeperMockRecorder) MaxValidators(ctx interface{}) *gomock.Call

MaxValidators indicates an expected call of MaxValidators.

func (*MockStakingKeeperMockRecorder) PowerReduction

func (mr *MockStakingKeeperMockRecorder) PowerReduction(ctx interface{}) *gomock.Call

PowerReduction indicates an expected call of PowerReduction.

func (*MockStakingKeeperMockRecorder) PutUnbondingOnHold

func (mr *MockStakingKeeperMockRecorder) PutUnbondingOnHold(ctx, id interface{}) *gomock.Call

PutUnbondingOnHold indicates an expected call of PutUnbondingOnHold.

func (*MockStakingKeeperMockRecorder) Slash

func (mr *MockStakingKeeperMockRecorder) Slash(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call

Slash indicates an expected call of Slash.

func (*MockStakingKeeperMockRecorder) UnbondingCanComplete

func (mr *MockStakingKeeperMockRecorder) UnbondingCanComplete(ctx, id interface{}) *gomock.Call

UnbondingCanComplete indicates an expected call of UnbondingCanComplete.

func (*MockStakingKeeperMockRecorder) UnbondingTime

func (mr *MockStakingKeeperMockRecorder) UnbondingTime(ctx interface{}) *gomock.Call

UnbondingTime indicates an expected call of UnbondingTime.

func (*MockStakingKeeperMockRecorder) Unjail

func (mr *MockStakingKeeperMockRecorder) Unjail(ctx, addr interface{}) *gomock.Call

Unjail indicates an expected call of Unjail.

func (*MockStakingKeeperMockRecorder) Validator

func (mr *MockStakingKeeperMockRecorder) Validator(ctx, addr interface{}) *gomock.Call

Validator indicates an expected call of Validator.

func (*MockStakingKeeperMockRecorder) ValidatorByConsAddr

func (mr *MockStakingKeeperMockRecorder) ValidatorByConsAddr(ctx, consAddr interface{}) *gomock.Call

ValidatorByConsAddr indicates an expected call of ValidatorByConsAddr.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL