Documentation ¶
Overview ¶
Package vertex is a generated GoMock package.
Index ¶
- func IsSortedAndUniqueHashOf(bytesSlice [][]byte) bool
- func SortHashOf(bytesSlice [][]byte)
- type Builder
- type DAGVM
- type Getter
- type Heap
- type Manager
- type MockDAGVM
- func (m *MockDAGVM) AppGossip(arg0 context.Context, arg1 ids.NodeID, arg2 []byte) error
- func (m *MockDAGVM) AppRequest(arg0 context.Context, arg1 ids.NodeID, arg2 uint32, arg3 time.Time, ...) error
- func (m *MockDAGVM) AppRequestFailed(arg0 context.Context, arg1 ids.NodeID, arg2 uint32) error
- func (m *MockDAGVM) AppResponse(arg0 context.Context, arg1 ids.NodeID, arg2 uint32, arg3 []byte) error
- func (m *MockDAGVM) Connected(arg0 context.Context, arg1 ids.NodeID, arg2 *version.Application) error
- func (m *MockDAGVM) CreateHandlers(arg0 context.Context) (map[string]*common.HTTPHandler, error)
- func (m *MockDAGVM) CreateStaticHandlers(arg0 context.Context) (map[string]*common.HTTPHandler, error)
- func (m *MockDAGVM) CrossChainAppRequest(arg0 context.Context, arg1 ids.ID, arg2 uint32, arg3 time.Time, arg4 []byte) error
- func (m *MockDAGVM) CrossChainAppRequestFailed(arg0 context.Context, arg1 ids.ID, arg2 uint32) error
- func (m *MockDAGVM) CrossChainAppResponse(arg0 context.Context, arg1 ids.ID, arg2 uint32, arg3 []byte) error
- func (m *MockDAGVM) Disconnected(arg0 context.Context, arg1 ids.NodeID) error
- func (m *MockDAGVM) EXPECT() *MockDAGVMMockRecorder
- func (m *MockDAGVM) GetTx(arg0 context.Context, arg1 ids.ID) (snowstorm.Tx, error)
- func (m *MockDAGVM) HealthCheck(arg0 context.Context) (interface{}, error)
- func (m *MockDAGVM) Initialize(arg0 context.Context, arg1 *snow.Context, arg2 manager.Manager, ...) error
- func (m *MockDAGVM) ParseTx(arg0 context.Context, arg1 []byte) (snowstorm.Tx, error)
- func (m *MockDAGVM) PendingTxs(arg0 context.Context) []snowstorm.Tx
- func (m *MockDAGVM) SetState(arg0 context.Context, arg1 snow.State) error
- func (m *MockDAGVM) Shutdown(arg0 context.Context) error
- func (m *MockDAGVM) Version(arg0 context.Context) (string, error)
- type MockDAGVMMockRecorder
- func (mr *MockDAGVMMockRecorder) AppGossip(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) AppRequest(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) AppRequestFailed(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) AppResponse(arg0, arg1, arg2, arg3 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) Connected(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) CreateHandlers(arg0 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) CreateStaticHandlers(arg0 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) CrossChainAppRequest(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) CrossChainAppRequestFailed(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) CrossChainAppResponse(arg0, arg1, arg2, arg3 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) Disconnected(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) GetTx(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) HealthCheck(arg0 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) Initialize(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) ParseTx(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) PendingTxs(arg0 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) SetState(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) Shutdown(arg0 interface{}) *gomock.Call
- func (mr *MockDAGVMMockRecorder) Version(arg0 interface{}) *gomock.Call
- type Parser
- type StatelessVertex
- type Storage
- type TestBuilder
- type TestManager
- type TestParser
- type TestStorage
- type TestVM
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsSortedAndUniqueHashOf ¶
func SortHashOf ¶
func SortHashOf(bytesSlice [][]byte)
Types ¶
type Builder ¶
type Builder interface { // Build a new vertex from the contents of a vertex BuildVtx(ctx context.Context, parentIDs []ids.ID, txs []snowstorm.Tx) (avalanche.Vertex, error) // Build a new stop vertex from the parents BuildStopVtx(ctx context.Context, parentIDs []ids.ID) (avalanche.Vertex, error) }
Builder builds a vertex given a set of parentIDs and transactions.
type DAGVM ¶
type DAGVM interface { common.VM Getter // Return any transactions that have not been sent to consensus yet PendingTxs(ctx context.Context) []snowstorm.Tx // Convert a stream of bytes to a transaction or return an error ParseTx(ctx context.Context, txBytes []byte) (snowstorm.Tx, error) }
DAGVM defines the minimum functionality that an avalanche VM must implement
type Getter ¶ added in v1.8.4
type Getter interface { // Retrieve a transaction that was submitted previously GetTx(ctx context.Context, txID ids.ID) (snowstorm.Tx, error) }
Getter defines the functionality for fetching a tx/block by its ID.
type Heap ¶
type Heap interface { // Empty the heap. Clear() // Add the provided vertex to the heap. Vertices are de-duplicated, returns // true if the vertex was added, false if it was dropped. Push(avalanche.Vertex) bool // Remove the top vertex. Assumes that there is at least one element. Pop() avalanche.Vertex // Returns if a vertex with the provided ID is currently in the heap. Contains(ids.ID) bool // Returns the number of vertices in the heap. Len() int }
Heap defines the functionality of a heap of vertices with unique VertexIDs ordered by height
type Manager ¶
Manager defines all the vertex related functionality that is required by the consensus engine.
type MockDAGVM ¶ added in v1.9.2
type MockDAGVM struct {
// contains filtered or unexported fields
}
MockDAGVM is a mock of DAGVM interface.
func NewMockDAGVM ¶ added in v1.9.2
func NewMockDAGVM(ctrl *gomock.Controller) *MockDAGVM
NewMockDAGVM creates a new mock instance.
func (*MockDAGVM) AppRequest ¶ added in v1.9.2
func (m *MockDAGVM) AppRequest(arg0 context.Context, arg1 ids.NodeID, arg2 uint32, arg3 time.Time, arg4 []byte) error
AppRequest mocks base method.
func (*MockDAGVM) AppRequestFailed ¶ added in v1.9.2
AppRequestFailed mocks base method.
func (*MockDAGVM) AppResponse ¶ added in v1.9.2
func (m *MockDAGVM) AppResponse(arg0 context.Context, arg1 ids.NodeID, arg2 uint32, arg3 []byte) error
AppResponse mocks base method.
func (*MockDAGVM) Connected ¶ added in v1.9.2
func (m *MockDAGVM) Connected(arg0 context.Context, arg1 ids.NodeID, arg2 *version.Application) error
Connected mocks base method.
func (*MockDAGVM) CreateHandlers ¶ added in v1.9.2
CreateHandlers mocks base method.
func (*MockDAGVM) CreateStaticHandlers ¶ added in v1.9.2
func (m *MockDAGVM) CreateStaticHandlers(arg0 context.Context) (map[string]*common.HTTPHandler, error)
CreateStaticHandlers mocks base method.
func (*MockDAGVM) CrossChainAppRequest ¶ added in v1.9.2
func (m *MockDAGVM) CrossChainAppRequest(arg0 context.Context, arg1 ids.ID, arg2 uint32, arg3 time.Time, arg4 []byte) error
CrossChainAppRequest mocks base method.
func (*MockDAGVM) CrossChainAppRequestFailed ¶ added in v1.9.2
func (m *MockDAGVM) CrossChainAppRequestFailed(arg0 context.Context, arg1 ids.ID, arg2 uint32) error
CrossChainAppRequestFailed mocks base method.
func (*MockDAGVM) CrossChainAppResponse ¶ added in v1.9.2
func (m *MockDAGVM) CrossChainAppResponse(arg0 context.Context, arg1 ids.ID, arg2 uint32, arg3 []byte) error
CrossChainAppResponse mocks base method.
func (*MockDAGVM) Disconnected ¶ added in v1.9.2
Disconnected mocks base method.
func (*MockDAGVM) EXPECT ¶ added in v1.9.2
func (m *MockDAGVM) EXPECT() *MockDAGVMMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockDAGVM) HealthCheck ¶ added in v1.9.2
HealthCheck mocks base method.
func (*MockDAGVM) Initialize ¶ added in v1.9.2
func (m *MockDAGVM) Initialize(arg0 context.Context, arg1 *snow.Context, arg2 manager.Manager, arg3, arg4, arg5 []byte, arg6 chan<- common.Message, arg7 []*common.Fx, arg8 common.AppSender) error
Initialize mocks base method.
func (*MockDAGVM) PendingTxs ¶ added in v1.9.2
PendingTxs mocks base method.
type MockDAGVMMockRecorder ¶ added in v1.9.2
type MockDAGVMMockRecorder struct {
// contains filtered or unexported fields
}
MockDAGVMMockRecorder is the mock recorder for MockDAGVM.
func (*MockDAGVMMockRecorder) AppGossip ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) AppGossip(arg0, arg1, arg2 interface{}) *gomock.Call
AppGossip indicates an expected call of AppGossip.
func (*MockDAGVMMockRecorder) AppRequest ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) AppRequest(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call
AppRequest indicates an expected call of AppRequest.
func (*MockDAGVMMockRecorder) AppRequestFailed ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) AppRequestFailed(arg0, arg1, arg2 interface{}) *gomock.Call
AppRequestFailed indicates an expected call of AppRequestFailed.
func (*MockDAGVMMockRecorder) AppResponse ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) AppResponse(arg0, arg1, arg2, arg3 interface{}) *gomock.Call
AppResponse indicates an expected call of AppResponse.
func (*MockDAGVMMockRecorder) Connected ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) Connected(arg0, arg1, arg2 interface{}) *gomock.Call
Connected indicates an expected call of Connected.
func (*MockDAGVMMockRecorder) CreateHandlers ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) CreateHandlers(arg0 interface{}) *gomock.Call
CreateHandlers indicates an expected call of CreateHandlers.
func (*MockDAGVMMockRecorder) CreateStaticHandlers ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) CreateStaticHandlers(arg0 interface{}) *gomock.Call
CreateStaticHandlers indicates an expected call of CreateStaticHandlers.
func (*MockDAGVMMockRecorder) CrossChainAppRequest ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) CrossChainAppRequest(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call
CrossChainAppRequest indicates an expected call of CrossChainAppRequest.
func (*MockDAGVMMockRecorder) CrossChainAppRequestFailed ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) CrossChainAppRequestFailed(arg0, arg1, arg2 interface{}) *gomock.Call
CrossChainAppRequestFailed indicates an expected call of CrossChainAppRequestFailed.
func (*MockDAGVMMockRecorder) CrossChainAppResponse ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) CrossChainAppResponse(arg0, arg1, arg2, arg3 interface{}) *gomock.Call
CrossChainAppResponse indicates an expected call of CrossChainAppResponse.
func (*MockDAGVMMockRecorder) Disconnected ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) Disconnected(arg0, arg1 interface{}) *gomock.Call
Disconnected indicates an expected call of Disconnected.
func (*MockDAGVMMockRecorder) GetTx ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) GetTx(arg0, arg1 interface{}) *gomock.Call
GetTx indicates an expected call of GetTx.
func (*MockDAGVMMockRecorder) HealthCheck ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) HealthCheck(arg0 interface{}) *gomock.Call
HealthCheck indicates an expected call of HealthCheck.
func (*MockDAGVMMockRecorder) Initialize ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) Initialize(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 interface{}) *gomock.Call
Initialize indicates an expected call of Initialize.
func (*MockDAGVMMockRecorder) ParseTx ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) ParseTx(arg0, arg1 interface{}) *gomock.Call
ParseTx indicates an expected call of ParseTx.
func (*MockDAGVMMockRecorder) PendingTxs ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) PendingTxs(arg0 interface{}) *gomock.Call
PendingTxs indicates an expected call of PendingTxs.
func (*MockDAGVMMockRecorder) SetState ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) SetState(arg0, arg1 interface{}) *gomock.Call
SetState indicates an expected call of SetState.
func (*MockDAGVMMockRecorder) Shutdown ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) Shutdown(arg0 interface{}) *gomock.Call
Shutdown indicates an expected call of Shutdown.
func (*MockDAGVMMockRecorder) Version ¶ added in v1.9.2
func (mr *MockDAGVMMockRecorder) Version(arg0 interface{}) *gomock.Call
Version indicates an expected call of Version.
type Parser ¶
type Parser interface { // Parse a vertex from a slice of bytes ParseVtx(ctx context.Context, vertex []byte) (avalanche.Vertex, error) }
Parser parses bytes into a vertex.
type StatelessVertex ¶
type StatelessVertex interface { verify.Verifiable ID() ids.ID Bytes() []byte Version() uint16 ChainID() ids.ID StopVertex() bool Height() uint64 Epoch() uint32 ParentIDs() []ids.ID Txs() [][]byte }
func Build ¶
func Build( chainID ids.ID, height uint64, parentIDs []ids.ID, txs [][]byte, ) (StatelessVertex, error)
Build a new stateless vertex from the contents of a vertex
func BuildStopVertex ¶
Build a new stateless vertex from the contents of a vertex
func Parse ¶
func Parse(bytes []byte) (StatelessVertex, error)
Parse parses the provided vertex bytes into a stateless vertex
type Storage ¶
type Storage interface { // Get a vertex by its hash from storage. GetVtx(ctx context.Context, vtxID ids.ID) (avalanche.Vertex, error) // Edge returns a list of accepted vertex IDs with no accepted children. Edge(ctx context.Context) (vtxIDs []ids.ID) // Returns "true" if accepted frontier ("Edge") is stop vertex. StopVertexAccepted(ctx context.Context) (bool, error) }
Storage defines the persistent storage that is required by the consensus engine.
type TestBuilder ¶
type TestBuilder struct { T *testing.T CantBuildVtx bool BuildVtxF func(ctx context.Context, parentIDs []ids.ID, txs []snowstorm.Tx) (avalanche.Vertex, error) BuildStopVtxF func(ctx context.Context, parentIDs []ids.ID) (avalanche.Vertex, error) }
func (*TestBuilder) BuildStopVtx ¶
func (*TestBuilder) Default ¶
func (b *TestBuilder) Default(cant bool)
type TestManager ¶
type TestManager struct { TestBuilder TestParser TestStorage }
func NewTestManager ¶
func NewTestManager(t *testing.T) *TestManager
func (*TestManager) Default ¶
func (m *TestManager) Default(cant bool)
type TestParser ¶
type TestParser struct { T *testing.T CantParseVtx bool ParseVtxF func(context.Context, []byte) (avalanche.Vertex, error) }
func (*TestParser) Default ¶
func (p *TestParser) Default(cant bool)
type TestStorage ¶
type TestStorage struct { T *testing.T CantGetVtx, CantEdge, CantStopVertexAccepted bool GetVtxF func(context.Context, ids.ID) (avalanche.Vertex, error) EdgeF func(context.Context) []ids.ID StopVertexAcceptedF func(context.Context) (bool, error) }
func (*TestStorage) Default ¶
func (s *TestStorage) Default(cant bool)
func (*TestStorage) StopVertexAccepted ¶ added in v1.8.4
func (s *TestStorage) StopVertexAccepted(ctx context.Context) (bool, error)
type TestVM ¶
type TestVM struct { common.TestVM CantPendingTxs, CantParse, CantGet bool PendingTxsF func(context.Context) []snowstorm.Tx ParseTxF func(context.Context, []byte) (snowstorm.Tx, error) GetTxF func(context.Context, ids.ID) (snowstorm.Tx, error) }