From 31c846011677ee65f431f38073c6fa14cb8dedee Mon Sep 17 00:00:00 2001 From: vyzo Date: Tue, 17 May 2022 21:47:01 +0300 Subject: [PATCH] fix typo --- node/bundle/manifest.go | 2 +- node/modules/builtin_actors.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node/bundle/manifest.go b/node/bundle/manifest.go index b35a70f20..d874d743d 100644 --- a/node/bundle/manifest.go +++ b/node/bundle/manifest.go @@ -87,7 +87,7 @@ func FetchAndLoadBundles(ctx context.Context, bs blockstore.Blockstore, bar map[ } for av, bd := range bar { - envvar := fmt.Sprintf("LOGUS_BUILTIN_ACTORS_V%d_BUNDLE", av) + envvar := fmt.Sprintf("LOTUS_BUILTIN_ACTORS_V%d_BUNDLE", av) switch { case os.Getenv(envvar) != "": // this is a local bundle, specified by an env var to load from the filesystem diff --git a/node/modules/builtin_actors.go b/node/modules/builtin_actors.go index 58ae035d9..407e3fc3e 100644 --- a/node/modules/builtin_actors.go +++ b/node/modules/builtin_actors.go @@ -67,7 +67,7 @@ func LoadBuiltinActors(lc fx.Lifecycle, mctx helpers.MetricsCtx, r repo.LockedRe } // we haven't recorded it in the datastore, so we need to load it - envvar := fmt.Sprintf("LOGUS_BUILTIN_ACTORS_V%d_BUNDLE", av) + envvar := fmt.Sprintf("LOTUS_BUILTIN_ACTORS_V%d_BUNDLE", av) var mfCid cid.Cid switch { case os.Getenv(envvar) != "":