From 851728f424dec08493f5394e5467e29f13fc7818 Mon Sep 17 00:00:00 2001 From: Aayush Date: Wed, 18 Jan 2023 10:12:39 -0500 Subject: [PATCH] fix: invoker: setup v11 in the registry --- 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 4b1ff245d..a2956636f 100644 --- a/chain/consensus/filcns/compute_state.go +++ b/chain/consensus/filcns/compute_state.go @@ -49,6 +49,7 @@ func NewActorRegistry() *vm.ActorRegistry { inv.Register(actorstypes.Version8, vm.ActorsVersionPredicate(actorstypes.Version8), builtin.MakeRegistry(actorstypes.Version8)) inv.Register(actorstypes.Version9, vm.ActorsVersionPredicate(actorstypes.Version9), builtin.MakeRegistry(actorstypes.Version9)) inv.Register(actorstypes.Version10, vm.ActorsVersionPredicate(actorstypes.Version10), builtin.MakeRegistry(actorstypes.Version10)) + inv.Register(actorstypes.Version11, vm.ActorsVersionPredicate(actorstypes.Version11), builtin.MakeRegistry(actorstypes.Version11)) return inv }