From 7d7755ec506a432687a602da1960491d4d6a8634 Mon Sep 17 00:00:00 2001 From: nick Date: Mon, 26 Aug 2024 10:54:41 +0900 Subject: [PATCH] fix: fix typo --- node/.env.example | 2 +- node/README.md | 2 +- node/pkg/checker/ping/app.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/node/.env.example b/node/.env.example index 25e91f3e5..69c9b16d7 100644 --- a/node/.env.example +++ b/node/.env.example @@ -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= diff --git a/node/README.md b/node/README.md index b88d5abe0..3f93c5e4e 100644 --- a/node/README.md +++ b/node/README.md @@ -139,7 +139,7 @@ BOOT_API_PORT= BOOT_API_URL= # Pinger priviliged set, not required from built image -WITHOUT_PING_PRIVILIGED= +WITHOUT_PING_PRIVILEGED= # provider URLs referenced from fetcher, uses public JSON-RPC if not provided FETCHER_CYPRESS_PROVIDER_URL= diff --git a/node/pkg/checker/ping/app.go b/node/pkg/checker/ping/app.go index 40c48b1e0..2e152d0d4 100644 --- a/node/pkg/checker/ping/app.go +++ b/node/pkg/checker/ping/app.go @@ -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) }