mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-31 16:21:21 +00:00
9 lines
145 B
Go
9 lines
145 B
Go
|
package sync
|
||
|
|
||
|
type statePointKind string
|
||
|
|
||
|
const (
|
||
|
checkpointKind = statePointKind("checkpoint")
|
||
|
milestoneKind = statePointKind("milestone")
|
||
|
)
|