mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
11 lines
211 B
Go
11 lines
211 B
Go
package clparams
|
|
|
|
type StateVersion uint8
|
|
|
|
const (
|
|
Phase0Version StateVersion = 0
|
|
AltairVersion StateVersion = 1
|
|
BellatrixVersion StateVersion = 2
|
|
CapellaVersion StateVersion = 3 // Unimplemented!
|
|
)
|