add NV18 actor keys

This commit is contained in:
vyzo 2022-11-08 07:35:51 +02:00
parent 6373e9752c
commit 5e4f24ec60

View File

@ -32,6 +32,9 @@ const (
SystemKey = "system"
VerifregKey = "verifiedregistry"
DatacapKey = "datacap"
EvmKey = "evm"
EamKey = "eam"
EmbryoKey = "embryo"
)
func GetBuiltinActorsKeys(av actorstypes.Version) []string {
@ -51,6 +54,9 @@ func GetBuiltinActorsKeys(av actorstypes.Version) []string {
if av >= 9 {
keys = append(keys, DatacapKey)
}
if av >= 10 {
keys = append(keys, EvmKey, EamKey, EmbryoKey)
}
return keys
}