2019-12-07 17:57:26 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
const (
|
|
|
|
// BlockProcessed is sent after a block has been processed and updated the state database.
|
|
|
|
BlockProcessed = iota + 1
|
|
|
|
// ChainStarted is sent when enough validators are active to start proposing blocks.
|
|
|
|
ChainStarted
|
|
|
|
// Initialized is sent when the internal beacon node's state is ready to be accessed.
|
|
|
|
Initialized
|
|
|
|
)
|
|
|
|
|
|
|
|
// BlockProcessedData is the data sent with BlockProcessed events.
|
|
|
|
type BlockProcessedData struct {
|
2020-02-10 16:59:55 +00:00
|
|
|
// Slot is the slot of the processed block.
|
|
|
|
Slot uint64
|
|
|
|
// BlockRoot is the hash of the processed block.
|
2019-12-07 17:57:26 +00:00
|
|
|
BlockRoot [32]byte
|
|
|
|
// Verified is true if the block's BLS contents have been verified.
|
|
|
|
Verified bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// ChainStartedData is the data sent with ChainStarted events.
|
|
|
|
type ChainStartedData struct {
|
|
|
|
// StartTime is the time at which the chain started.
|
|
|
|
StartTime time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// InitializedData is the data sent with Initialized events.
|
|
|
|
type InitializedData struct {
|
|
|
|
// StartTime is the time at which the chain started.
|
|
|
|
StartTime time.Time
|
|
|
|
}
|