mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* Remove interop dependencies from production binary for beacon-chain. Specifically, remove the interop genesis service. Finding links to pebble: bazel query 'somepath(//cmd/beacon-chain, @com_github_cockroachdb_pebble//...)' --notool_deps * Update INTEROP.md * Remove interop config * Remove ancient interop script * Add electra support for premine genesis * Add example of --chain-config-file, test interop instructions * Fixes * Add binary size reduction * Update binary size reduction * Fix duplicate switch case * Move CHANGELOG entries to unreleased section * gofmt * fix
14 lines
344 B
Go
14 lines
344 B
Go
package flags
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var (
|
|
// InteropMockEth1DataVotesFlag enables mocking the eth1 proof-of-work chain data put into blocks by proposers.
|
|
InteropMockEth1DataVotesFlag = &cli.BoolFlag{
|
|
Name: "interop-eth1data-votes",
|
|
Usage: "Enable mocking of eth1 data votes for proposers to package into blocks",
|
|
}
|
|
)
|