mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
cmd: add --bal.executionmode flag (still noop)
This commit is contained in:
parent
27c8f4a19f
commit
3f0c06c527
2 changed files with 6 additions and 0 deletions
|
|
@ -95,6 +95,7 @@ var (
|
|||
utils.BinTrieGroupDepthFlag,
|
||||
utils.LightKDFFlag,
|
||||
utils.EthRequiredBlocksFlag,
|
||||
utils.BALExecutionModeFlag,
|
||||
utils.LegacyWhitelistFlag, // deprecated
|
||||
utils.CacheFlag,
|
||||
utils.CacheDatabaseFlag,
|
||||
|
|
|
|||
|
|
@ -243,6 +243,11 @@ var (
|
|||
Usage: "Comma separated block number-to-hash mappings to require for peering (<number>=<hash>)",
|
||||
Category: flags.EthCategory,
|
||||
}
|
||||
BALExecutionModeFlag = &cli.StringFlag{
|
||||
Name: "bal.executionmode",
|
||||
Usage: "EIP-7928 block-access-list execution mode (no-op placeholder)",
|
||||
Category: flags.EthCategory,
|
||||
}
|
||||
BloomFilterSizeFlag = &cli.Uint64Flag{
|
||||
Name: "bloomfilter.size",
|
||||
Usage: "Megabytes of memory allocated to bloom-filter for pruning",
|
||||
|
|
|
|||
Loading…
Reference in a new issue