lotus/build/builtin_actors.go

13 lines
164 B
Go
Raw Normal View History

2022-04-04 14:47:17 +00:00
package build
import (
_ "embed"
)
//go:embed builtin-actors/builtin-actors-v8.car
var actorsv8 []byte
func BuiltinActorsV8Bundle() []byte {
return actorsv8
}