From e1c497f03daf8879bdbe5535e0f1d2af87ec29e7 Mon Sep 17 00:00:00 2001 From: raulk Date: Mon, 27 Feb 2023 15:14:05 +0000 Subject: [PATCH] hyperspace: fix missing state type for actors v13. (#10354) --- chain/consensus/filcns/compute_state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/chain/consensus/filcns/compute_state.go b/chain/consensus/filcns/compute_state.go index 5bafb981d..995be156d 100644 --- a/chain/consensus/filcns/compute_state.go +++ b/chain/consensus/filcns/compute_state.go @@ -55,6 +55,7 @@ func NewActorRegistry() *vm.ActorRegistry { inv.Register(actorstypes.Version10, vm.ActorsVersionPredicate(actorstypes.Version10), builtin.MakeRegistry(actorstypes.Version10)) inv.Register(actorstypes.Version11, vm.ActorsVersionPredicate(actorstypes.Version11), builtin.MakeRegistry(actorstypes.Version11)) inv.Register(actorstypes.Version12, vm.ActorsVersionPredicate(actorstypes.Version12), builtin.MakeRegistry(actorstypes.Version12)) + inv.Register(actorstypes.Version13, vm.ActorsVersionPredicate(actorstypes.Version13), builtin.MakeRegistry(actorstypes.Version13)) return inv }