lotus/build/bundle.go
2022-05-12 21:14:03 +03:00

22 lines
280 B
Go

package build
import (
_ "embed"
"github.com/filecoin-project/lotus/chain/actors"
)
var NetworkBundle string
//go:embed bundles.toml
var BuiltinActorBundles []byte
type BundleSpec struct {
Bundles []Bundle
}
type Bundle struct {
Version actors.Version
Release string
}