lotus/build/builtin_actors_2k.go

23 lines
373 B
Go
Raw Normal View History

//go:build debug || 2k || testground
// +build debug 2k testground
2022-04-04 14:47:17 +00:00
package build
import (
_ "embed"
)
//go:embed builtin-actors/v8/builtin-actors-devnet.car
2022-04-04 14:47:17 +00:00
var actorsv8 []byte
func BuiltinActorsV8Bundle() []byte {
return actorsv8
}
2022-04-14 16:38:49 +00:00
//go:embed builtin-actors/v7/builtin-actors-devnet.car
2022-04-14 16:38:49 +00:00
var actorsv7 []byte
func BuiltinActorsV7Bundle() []byte {
return actorsv7
}