prysm-pulse/beacon-chain/core/feed/block/events.go

17 lines
489 B
Go
Raw Normal View History

// Package block contains types for block-specific events fired
// during the runtime of a beacon node.
package block
import "github.com/prysmaticlabs/prysm/v3/consensus-types/interfaces"
const (
// ReceivedBlock is sent after a block has been received by the beacon node via p2p or RPC.
ReceivedBlock = iota + 1
)
// ReceivedBlockData is the data sent with ReceivedBlock events.
type ReceivedBlockData struct {
2023-02-09 09:23:32 +00:00
SignedBlock interfaces.ReadOnlySignedBeaconBlock
IsOptimistic bool
}