Skip to content

Commit

Permalink
Fix a config key name clash with the tracer (#87)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 authored Sep 27, 2024
1 parent c4cf8ff commit d15ea8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public TestCommandLineOptionsBuilder() {
"--plugin-linea-l1l2-bridge-contract=", "0x00000000000000000000000000000000DEADBEEF");
cliOptions.setProperty("--plugin-linea-l1l2-bridge-topic=", "0x123456");
cliOptions.setProperty("--plugin-linea-conflated-trace-generation-traces-output-path=", ".");
cliOptions.setProperty("--plugin-linea-rpc-concurrent-requests-limit=", "1");
}

public TestCommandLineOptionsBuilder set(String option, String value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/** The Linea RPC CLI options. */
public class LineaRpcCliOptions implements LineaCliOptions {
public static final String CONFIG_KEY = "rpc-config";
public static final String CONFIG_KEY = "rpc-config-sequencer";

private static final String ESTIMATE_GAS_COMPATIBILITY_MODE_ENABLED =
"--plugin-linea-estimate-gas-compatibility-mode-enabled";
Expand Down

0 comments on commit d15ea8e

Please sign in to comment.