Skip to content

Commit

Permalink
fixed env vars naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikelle committed Feb 14, 2024
1 parent 2e254a9 commit 0697c77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ var (
optionKeystorePassword = altsrc.NewStringFlag(&cli.StringFlag{
Name: "keystore-password",
Usage: "use to access keystore",
EnvVars: []string{"MEV_COMMIT_KEYSTORE_PASSWORD"},
EnvVars: []string{"MEV_ORACLE_KEYSTORE_PASSWORD"},
})

optionKeystorePath = altsrc.NewStringFlag(&cli.StringFlag{
Name: "keystore-path",
Usage: "path to keystore location",
EnvVars: []string{"MEV_COMMIT_KEYSTORE_PATH"},
EnvVars: []string{"MEV_ORACLE_KEYSTORE_PATH"},
Value: filepath.Join(defaultConfigDir, defaultKeystore),
})
)
Expand Down

0 comments on commit 0697c77

Please sign in to comment.