22 lines
280 B
Go
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
|
|
}
|