Skip to content

Commit

Permalink
Merge pull request #35 from primevprotocol/fix/env-naming
Browse files Browse the repository at this point in the history
fixed env vars naming
  • Loading branch information
Mikelle authored Feb 14, 2024
2 parents 2e254a9 + 0697c77 commit 1c3a221
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 1c3a221

Please sign in to comment.