diff --git a/build/builtin-actors/README.md b/build/builtin-actors/README.md new file mode 100644 index 000000000..11625b261 --- /dev/null +++ b/build/builtin-actors/README.md @@ -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 diff --git a/build/builtin_actors.go b/build/builtin_actors.go new file mode 100644 index 000000000..ea9c28ad3 --- /dev/null +++ b/build/builtin_actors.go @@ -0,0 +1,12 @@ +package build + +import ( + _ "embed" +) + +//go:embed builtin-actors/builtin-actors-v8.car +var actorsv8 []byte + +func BuiltinActorsV8Bundle() []byte { + return actorsv8 +}