Skip to content

Commit

Permalink
fix add QuorumNumbers arg
Browse files Browse the repository at this point in the history
  • Loading branch information
fyInALT committed Jun 26, 2024
1 parent 5b96b23 commit 172a10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legacy/cli/actions/register_operator_with_avs.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func RegisterOperatorWithAvs(ctx *cli.Context) error {
quorumNumbers := []byte{0}

quorumNumbersEnvStr, ok := os.LookupEnv("REG_QUORUM_NUMBERS")
if !ok && quorumNumbersEnvStr != "" {
if ok && quorumNumbersEnvStr != "" {
log.Printf("use REG_QUORUM_NUMBERS %v", quorumNumbersEnvStr)
quorumNumbers, err = parseQuorumNumbers(quorumNumbersEnvStr)
if err != nil {
Expand Down

0 comments on commit 172a10b

Please sign in to comment.