From 2e84d09c1c30eb0982bd083a3a5812156606d1c0 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Fri, 10 Oct 2025 17:29:54 +0800 Subject: [PATCH] improve --experimental.bal flag description --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index a34da29780..f685799e67 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1014,7 +1014,7 @@ Please note that --` + MetricsHTTPFlag.Name + ` must be set to start the server. ExperimentalBALFlag = &cli.BoolFlag{ Name: "experimental.bal", - Usage: "Enable block-access-list building when importing post-Cancun blocks, and validation that access lists contained in post-Cancun blocks correctly correspond to the state changes in those blocks. This is used for development purposes only. Do not enable it otherwise.", + 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.", Category: flags.MiscCategory, } )