ceremonyclient/consensus/models/control_flows.go

14 lines
320 B
Go

package models
import "time"
// NextRank is the control flow event for when the next rank should be entered.
type NextRank struct {
// Rank is the next rank value.
Rank uint64
// Start is the time the next rank was entered.
Start time.Time
// End is the time the next rank ends (i.e. times out).
End time.Time
}