From 37b807278a0ee7f811c2689e4b998e9195b05b1c Mon Sep 17 00:00:00 2001 From: vyzo Date: Thu, 12 May 2022 17:25:23 +0300 Subject: [PATCH] fix lotus-seed --- cmd/lotus-seed/genesis.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/lotus-seed/genesis.go b/cmd/lotus-seed/genesis.go index 6ae501687..9aae9a9f4 100644 --- a/cmd/lotus-seed/genesis.go +++ b/cmd/lotus-seed/genesis.go @@ -12,10 +12,10 @@ import ( "github.com/filecoin-project/go-state-types/network" "github.com/filecoin-project/lotus/blockstore" - "github.com/filecoin-project/lotus/chain/actors" "github.com/filecoin-project/lotus/chain/vm" "github.com/filecoin-project/lotus/extern/sector-storage/ffiwrapper" "github.com/filecoin-project/lotus/journal" + "github.com/filecoin-project/lotus/node/bundle" "github.com/filecoin-project/lotus/node/modules/dtypes" "github.com/filecoin-project/lotus/node/modules/testing" "github.com/google/uuid" @@ -581,7 +581,7 @@ var genesisCarCmd = &cli.Command{ sbldr := vm.Syscalls(ffiwrapper.ProofVerifier) // load appropriate bundles - if err := actors.FetchAndLoadBundles(c.Context, bstor, build.BuiltinActorReleases); err != nil { + if err := bundle.FetchAndLoadBundles(c.Context, bstor, build.BuiltinActorReleases); err != nil { return err }