You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/utils/flags.go
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1108,6 +1108,31 @@ Please note that --` + MetricsHTTPFlag.Name + ` must be set to start the server.
1108
1108
Name: "era.format",
1109
1109
Usage: "Archive format: 'era1' or 'erae'",
1110
1110
}
1111
+
1112
+
// Block Access List flags
1113
+
ExperimentalBALFlag=&cli.BoolFlag{
1114
+
Name: "experimental.bal",
1115
+
Usage: "Enable generation of EIP-7928 block access lists when importing post-Cancun blocks which lack them. When this flag is specified, importing blocks containing access lists triggers validation of their correctness and execution based off them. The header block access list field is not set with blocks created when this flag is specified, nor is it validated when importing blocks that contain access lists. This is used for development purposes only. Do not enable it otherwise.",
1116
+
Category: flags.MiscCategory,
1117
+
}
1118
+
// block access list flags
1119
+
1120
+
BlockAccessListExecutionModeFlag=&cli.StringFlag{
1121
+
Name: "bal.executionmode",
1122
+
Usage: `
1123
+
block access list execution type. possible inputs are:
1124
+
- sequential: no performance acceleration
1125
+
- full: parallel transaction execution, state root calculation, async warming of access list reads
1126
+
- nobatchio: same as 'full', but without async warming of access list reads`,
0 commit comments