Commit 41ed998c authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #4656 from ethereum-optimism/willc/indexer-flags

fix(indexer): Fix flag type
parents d8877fb8 4903823c
...@@ -83,12 +83,12 @@ var ( ...@@ -83,12 +83,12 @@ var (
Usage: "Whether or not this indexer should operate in Bedrock mode", Usage: "Whether or not this indexer should operate in Bedrock mode",
EnvVar: prefixEnvVar("BEDROCK"), EnvVar: prefixEnvVar("BEDROCK"),
} }
BedrockL1StandardBridgeAddress = cli.BoolFlag{ BedrockL1StandardBridgeAddress = cli.StringFlag{
Name: "bedrock.l1-standard-bridge-address", Name: "bedrock.l1-standard-bridge-address",
Usage: "Address of the L1 standard bridge", Usage: "Address of the L1 standard bridge",
EnvVar: prefixEnvVar("BEDROCK_L1_STANDARD_BRIDGE"), EnvVar: prefixEnvVar("BEDROCK_L1_STANDARD_BRIDGE"),
} }
BedrockOptimismPortalAddress = cli.BoolFlag{ BedrockOptimismPortalAddress = cli.StringFlag{
Name: "bedrock.portal-address", Name: "bedrock.portal-address",
Usage: "Address of the portal", Usage: "Address of the portal",
EnvVar: prefixEnvVar("BEDROCK_OPTIMISM_PORTAL"), EnvVar: prefixEnvVar("BEDROCK_OPTIMISM_PORTAL"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment