mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
64072ce6c7
Co-authored-by: battlmonstr <battlmonstr@users.noreply.github.com>
9 lines
145 B
Go
9 lines
145 B
Go
package sync
|
|
|
|
type statePointKind string
|
|
|
|
const (
|
|
checkpointKind = statePointKind("checkpoint")
|
|
milestoneKind = statePointKind("milestone")
|
|
)
|