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
* fix: 0 tx blocks after limbo
* Add executor-enabled flag.
It disables using remote executor even when executor-urls option is filled in,
which is helpful when testing limbo mode, when txs are still sent to
the remote executor.
Copy file name to clipboardexpand all lines: cmd/utils/flags.go
+5
Original file line number
Diff line number
Diff line change
@@ -596,6 +596,11 @@ var (
596
596
Usage: "A comma separated list of grpc addresses that host executors",
597
597
Value: "",
598
598
}
599
+
ExecutorEnabled= cli.BoolFlag{
600
+
Name: "zkevm.executor-enabled",
601
+
Usage: "Enables the executor. Used for testing limbo, when executor-urls are set, but we don't want to use them, only in limbo to verify limbo transactions. For this case, set it to false. Defaulted to true",
602
+
Value: true,
603
+
}
599
604
ExecutorStrictMode= cli.BoolFlag{
600
605
Name: "zkevm.executor-strict",
601
606
Usage: "Defaulted to true to ensure you must set some executor URLs, bypass this restriction by setting to false",
0 commit comments