diff --git a/cmd/geth/main.go b/cmd/geth/main.go index d37e95ec3e..03373efe0f 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -161,6 +161,7 @@ var ( utils.L1EndpointFlag, utils.L1ConfirmationsFlag, utils.L1DeploymentBlockFlag, + utils.CircuitCapacityCheckEnabledFlag, } rpcFlags = []cli.Flag{ diff --git a/params/version.go b/params/version.go index a92ae99612..03a257259d 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 4 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 6 // Patch version component of the current release + VersionPatch = 7 // Patch version component of the current release VersionMeta = "sepolia" // Version metadata to append to the version string )