mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 02:10:46 +00:00
cmd: add --bal.executionmode flag (still noop)
This commit is contained in:
parent
d5ae30203c
commit
469be4e266
2 changed files with 6 additions and 0 deletions
|
|
@ -91,6 +91,7 @@ var (
|
||||||
utils.BinTrieGroupDepthFlag,
|
utils.BinTrieGroupDepthFlag,
|
||||||
utils.LightKDFFlag,
|
utils.LightKDFFlag,
|
||||||
utils.EthRequiredBlocksFlag,
|
utils.EthRequiredBlocksFlag,
|
||||||
|
utils.BALExecutionModeFlag,
|
||||||
utils.CacheFlag,
|
utils.CacheFlag,
|
||||||
utils.CacheDatabaseFlag,
|
utils.CacheDatabaseFlag,
|
||||||
utils.CacheTrieFlag,
|
utils.CacheTrieFlag,
|
||||||
|
|
|
||||||
|
|
@ -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