Skip to content

Commit

Permalink
hyperspace: fix missing state type for actors v13.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Feb 27, 2023
1 parent ddc2149 commit cf152e1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions chain/consensus/filcns/compute_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit cf152e1

Please sign in to comment.