mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-02 04:58:38 +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.BinTrieGroupDepthFlag,
|
||||||
utils.LightKDFFlag,
|
utils.LightKDFFlag,
|
||||||
utils.EthRequiredBlocksFlag,
|
utils.EthRequiredBlocksFlag,
|
||||||
|
utils.BALExecutionModeFlag,
|
||||||
utils.LegacyWhitelistFlag, // deprecated
|
utils.LegacyWhitelistFlag, // deprecated
|
||||||
utils.CacheFlag,
|
utils.CacheFlag,
|
||||||
utils.CacheDatabaseFlag,
|
utils.CacheDatabaseFlag,
|
||||||
|
|
|
||||||
|
|
@ -243,6 +243,11 @@ var (
|
||||||
Usage: "Comma separated block number-to-hash mappings to require for peering (<number>=<hash>)",
|
Usage: "Comma separated block number-to-hash mappings to require for peering (<number>=<hash>)",
|
||||||
Category: flags.EthCategory,
|
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{
|
BloomFilterSizeFlag = &cli.Uint64Flag{
|
||||||
Name: "bloomfilter.size",
|
Name: "bloomfilter.size",
|
||||||
Usage: "Megabytes of memory allocated to bloom-filter for pruning",
|
Usage: "Megabytes of memory allocated to bloom-filter for pruning",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue