From 9413fe90fd8780a2deebd174abbed2f66b1996c3 Mon Sep 17 00:00:00 2001 From: hexoscott <70711990+hexoscott@users.noreply.github.com> Date: Tue, 3 Sep 2024 14:05:12 +0100 Subject: [PATCH] disable l1 cache by default (#1089) --- 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 53d5aa415e7..09df1f97c49 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -393,7 +393,7 @@ var ( L1CacheEnabledFlag = cli.BoolFlag{ Name: "zkevm.l1-cache-enabled", Usage: "Enable the L1 cache", - Value: true, + Value: false, } L1CachePortFlag = cli.UintFlag{ Name: "zkevm.l1-cache-port",