mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-09 12:31:21 +00:00
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
|
||
|
}
|