lotus/build/bundle.go

22 lines
280 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 {
Version actors.Version
Release string
}