lotus/build/bundle.go

29 lines
628 B
Go
Raw Normal View History

package build
import (
_ "embed"
"github.com/filecoin-project/lotus/chain/actors"
)
var NetworkBundle string
2022-05-12 18:14:03 +00:00
//go:embed bundles.toml
var BuiltinActorBundles []byte
type BundleSpec struct {
Bundles []Bundle
}
type Bundle struct {
2022-05-16 18:48:12 +00:00
// Version is the actors version in this bundle
Version actors.Version
2022-05-16 18:48:12 +00:00
// Release is the release id
Release string
2022-05-16 18:48:12 +00:00
// Path is the (optional) bundle path; uses the appropriate release bundle if unset
Path string
2022-05-16 18:48:12 +00:00
// Devlopment indicates whether this is a development version; when set, in conjunction with path,
// it will always load the bundle to the blockstore
Development bool
}