mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 03:22:18 +00:00
4d35e776da
start of abstracting the transition layer. incremental movements.
12 lines
176 B
Go
12 lines
176 B
Go
package eth2
|
|
|
|
import "github.com/ledgerwatch/erigon/cl/transition/machine"
|
|
|
|
type Impl = impl
|
|
|
|
var _ machine.Interface = (*impl)(nil)
|
|
|
|
type impl struct {
|
|
FullValidation bool
|
|
}
|