Documentation ¶
Overview ¶
Package proposer is a generated GoMock package.
Index ¶
Constants ¶
View Source
const ( MaxWindows = 6 WindowDuration = 5 * time.Second MaxDelay = MaxWindows * WindowDuration )
Proposer list constants
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockWindower ¶
type MockWindower struct {
// contains filtered or unexported fields
}
MockWindower is a mock of Windower interface.
func NewMockWindower ¶
func NewMockWindower(ctrl *gomock.Controller) *MockWindower
NewMockWindower creates a new mock instance.
func (*MockWindower) Delay ¶
func (m *MockWindower) Delay(arg0 context.Context, arg1, arg2 uint64, arg3 ids.NodeID) (time.Duration, error)
Delay mocks base method.
func (*MockWindower) EXPECT ¶
func (m *MockWindower) EXPECT() *MockWindowerMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
type MockWindowerMockRecorder ¶
type MockWindowerMockRecorder struct {
// contains filtered or unexported fields
}
MockWindowerMockRecorder is the mock recorder for MockWindower.
func (*MockWindowerMockRecorder) Delay ¶
func (mr *MockWindowerMockRecorder) Delay(arg0, arg1, arg2, arg3 interface{}) *gomock.Call
Delay indicates an expected call of Delay.
func (*MockWindowerMockRecorder) Proposers ¶
func (mr *MockWindowerMockRecorder) Proposers(arg0, arg1, arg2 interface{}) *gomock.Call
Proposers indicates an expected call of Proposers.
type Windower ¶
type Windower interface { // Proposers returns the proposer list for building a block at [chainHeight] // when the validator set is defined at [oChainHeight]. The list is returned // in order. The minimum delay of a validator is the index they appear times // [WindowDuration]. Proposers( ctx context.Context, chainHeight, oChainHeight uint64, ) ([]ids.NodeID, error) // Delay returns the amount of time that [validatorID] must wait before // building a block at [chainHeight] when the validator set is defined at // [oChainHeight]. Delay( ctx context.Context, chainHeight, oChainHeight uint64, validatorID ids.NodeID, ) (time.Duration, error) }
Click to show internal directories.
Click to hide internal directories.