embed actors v8 bundle

This commit is contained in:
vyzo 2022-04-04 17:47:17 +03:00
parent 7712fc044e
commit c3fb3301ab
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,3 @@
This directory contains the builtin actors v8 bundle, to be emdedded in the binary.
To change your actor bundle, prior to fixing for nv16 upgrade, generate a bundle using the actor
bundler and place it in this directory, in a file named builtin-actors-v8.car

12
build/builtin_actors.go Normal file
View File

@ -0,0 +1,12 @@
package build
import (
_ "embed"
)
//go:embed builtin-actors/builtin-actors-v8.car
var actorsv8 []byte
func BuiltinActorsV8Bundle() []byte {
return actorsv8
}