github.com/MetalBlockchain/metalgo@v1.11.9/snow/engine/avalanche/vertex/manager.go (about) 1 // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved. 2 // See the file LICENSE for licensing terms. 3 4 package vertex 5 6 // Manager defines all the vertex related functionality that is required by the 7 // consensus engine. 8 type Manager interface { 9 Builder 10 Parser 11 Storage 12 }