From 91daae2e36659760674782fc02a5bf548764f019 Mon Sep 17 00:00:00 2001 From: vyzo Date: Wed, 18 May 2022 19:14:11 +0300 Subject: [PATCH] add the network name to the bundle key in the datastore --- node/modules/builtin_actors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/modules/builtin_actors.go b/node/modules/builtin_actors.go index 2ee63a9ce..4384bb3f3 100644 --- a/node/modules/builtin_actors.go +++ b/node/modules/builtin_actors.go @@ -29,7 +29,7 @@ func LoadBuiltinActors(lc fx.Lifecycle, mctx helpers.MetricsCtx, r repo.LockedRe for av, bd := range build.BuiltinActorReleases { // first check to see if we know this release - key := dstore.NewKey(fmt.Sprintf("/builtin-actors/v%d/%s", av, bd.Release)) + key := dstore.NewKey(fmt.Sprintf("/builtin-actors/v%d/%s/%s", av, bd.Release, netw)) data, err := ds.Get(ctx, key) switch err {