erigon-pulse/polygon/sync/state_point_kind.go
milen 64072ce6c7
polygon/sync: implement header downloader (#9030)
Co-authored-by: battlmonstr <battlmonstr@users.noreply.github.com>
2023-12-22 10:44:55 +00:00

9 lines
145 B
Go

package sync
type statePointKind string
const (
checkpointKind = statePointKind("checkpoint")
milestoneKind = statePointKind("milestone")
)