Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Aug 26, 2024
1 parent 97bedb0 commit 7d7755e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ BOOT_API_PORT=
BOOT_API_URL=

# (optional) required to be true if running from local mac
WITHOUT_PING_PRIVILIGED=
WITHOUT_PING_PRIVILEGED=

# POR
POR_REPORTER_PK=
Expand Down
2 changes: 1 addition & 1 deletion node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ BOOT_API_PORT=<Your Boot API Port>
BOOT_API_URL=<Your Boot API URL>

# Pinger priviliged set, not required from built image
WITHOUT_PING_PRIVILIGED=<Set true if running local>
WITHOUT_PING_PRIVILEGED=<Set true if running local>

# provider URLs referenced from fetcher, uses public JSON-RPC if not provided
FETCHER_CYPRESS_PROVIDER_URL=<Your Cypress provider URL>
Expand Down
2 changes: 1 addition & 1 deletion node/pkg/checker/ping/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func New(opts ...AppOption) (*App, error) {
return nil, err
}

withoutPriviliged, err := strconv.ParseBool(os.Getenv("WITHOUT_PING_PRIVILIGED"))
withoutPriviliged, err := strconv.ParseBool(os.Getenv("WITHOUT_PING_PRIVILEGED"))
if !withoutPriviliged || err != nil {
pinger.SetPrivileged(true)
}
Expand Down

0 comments on commit 7d7755e

Please sign in to comment.