Skip to content

Commit

Permalink
changed default file name to toml (#476)
Browse files Browse the repository at this point in the history
Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
  • Loading branch information
macfarla authored Dec 7, 2023
1 parent 6a57f84 commit edf732a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/** The Linea CLI options. */
public class LineaTransactionSelectorCliOptions {
public static final int DEFAULT_MAX_BLOCK_CALLDATA_SIZE = 70000;
private static final String DEFAULT_MODULE_LIMIT_FILE_PATH = "moduleLimitFile.json";
private static final String DEFAULT_MODULE_LIMIT_FILE_PATH = "moduleLimitFile.toml";
public static final long DEFAULT_MAX_GAS_PER_BLOCK = 30_000_000L;
private static final String MAX_BLOCK_CALLDATA_SIZE = "--plugin-linea-max-block-calldata-size";
private static final String MODULE_LIMIT_FILE_PATH = "--plugin-linea-module-limit-file-path";
Expand All @@ -42,7 +42,7 @@ public class LineaTransactionSelectorCliOptions {
hidden = true,
paramLabel = "<STRING>",
description =
"Path to the json file containing the module limits (default: "
"Path to the toml file containing the module limits (default: "
+ DEFAULT_MODULE_LIMIT_FILE_PATH
+ ")")
private String moduleLimitFilePath = DEFAULT_MODULE_LIMIT_FILE_PATH;
Expand Down

0 comments on commit edf732a

Please sign in to comment.