2020-01-22 16:50:16 +00:00
|
|
|
package forkchoice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-01-26 20:25:33 +00:00
|
|
|
|
2021-02-16 07:45:34 +00:00
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
2020-01-26 20:25:33 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/forkchoice/protoarray"
|
2020-01-22 16:50:16 +00:00
|
|
|
)
|
|
|
|
|
2020-01-25 20:22:25 +00:00
|
|
|
// ForkChoicer represents the full fork choice interface composed of all of the sub-interfaces.
|
|
|
|
type ForkChoicer interface {
|
2020-01-22 16:50:16 +00:00
|
|
|
HeadRetriever // to compute head.
|
|
|
|
BlockProcessor // to track new block for fork choice.
|
|
|
|
AttestationProcessor // to track new attestation for fork choice.
|
|
|
|
Pruner // to clean old data for fork choice.
|
2020-01-26 20:25:33 +00:00
|
|
|
Getter // to retrieve fork choice information.
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// HeadRetriever retrieves head root of the current chain.
|
|
|
|
type HeadRetriever interface {
|
2021-02-09 10:05:22 +00:00
|
|
|
Head(context.Context, types.Epoch, [32]byte, []uint64, types.Epoch) ([32]byte, error)
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BlockProcessor processes the block that's used for accounting fork choice.
|
|
|
|
type BlockProcessor interface {
|
2021-02-16 07:45:34 +00:00
|
|
|
ProcessBlock(context.Context, types.Slot, [32]byte, [32]byte, [32]byte, types.Epoch, types.Epoch) error
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AttestationProcessor processes the attestation that's used for accounting fork choice.
|
|
|
|
type AttestationProcessor interface {
|
2021-02-09 10:05:22 +00:00
|
|
|
ProcessAttestation(context.Context, []uint64, [32]byte, types.Epoch)
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pruner prunes the fork choice upon new finalization. This is used to keep fork choice sane.
|
|
|
|
type Pruner interface {
|
2020-01-25 20:22:25 +00:00
|
|
|
Prune(context.Context, [32]byte) error
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
2020-01-26 20:25:33 +00:00
|
|
|
|
|
|
|
// Getter returns fork choice related information.
|
|
|
|
type Getter interface {
|
|
|
|
Nodes() []*protoarray.Node
|
2020-02-10 19:09:12 +00:00
|
|
|
Node([32]byte) *protoarray.Node
|
2020-02-05 17:05:51 +00:00
|
|
|
HasNode([32]byte) bool
|
2020-05-26 23:24:38 +00:00
|
|
|
Store() *protoarray.Store
|
2020-07-28 22:29:34 +00:00
|
|
|
HasParent(root [32]byte) bool
|
2021-02-16 07:45:34 +00:00
|
|
|
AncestorRoot(ctx context.Context, root [32]byte, slot types.Slot) ([]byte, error)
|
2020-10-23 01:32:13 +00:00
|
|
|
IsCanonical(root [32]byte) bool
|
2020-01-26 20:25:33 +00:00
|
|
|
}
|