mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
30 lines
650 B
Go
30 lines
650 B
Go
|
package consensus
|
||
|
|
||
|
import (
|
||
|
"source.quilibrium.com/quilibrium/monorepo/node/execution"
|
||
|
)
|
||
|
|
||
|
type EngineState int
|
||
|
|
||
|
const (
|
||
|
EngineStateStopped EngineState = iota
|
||
|
EngineStateStarting
|
||
|
EngineStateLoading
|
||
|
EngineStateCollecting
|
||
|
EngineStateProving
|
||
|
EngineStatePublishing
|
||
|
EngineStateVerifying
|
||
|
EngineStateStopping
|
||
|
)
|
||
|
|
||
|
type ConsensusEngine interface {
|
||
|
Start() <-chan error
|
||
|
Stop(force bool) <-chan error
|
||
|
RegisterExecutor(exec execution.ExecutionEngine, frame uint64) <-chan error
|
||
|
UnregisterExecutor(name string, frame uint64, force bool) <-chan error
|
||
|
GetFrame() uint64
|
||
|
GetDifficulty() uint32
|
||
|
GetState() EngineState
|
||
|
GetFrameChannel() <-chan uint64
|
||
|
}
|