This commit is contained in:
Łukasz Magiera 2019-08-16 04:34:23 +02:00
parent 04925a27aa
commit 1e9898f844

View File

@ -13,7 +13,7 @@ import (
) )
type invoker struct { type invoker struct {
builtInCode map[cid.Cid]nativeCode builtInCode map[cid.Cid]nativeCode
builtInState map[cid.Cid]reflect.Type builtInState map[cid.Cid]reflect.Type
} }
@ -22,7 +22,7 @@ type nativeCode []invokeFunc
func newInvoker() *invoker { func newInvoker() *invoker {
inv := &invoker{ inv := &invoker{
builtInCode: make(map[cid.Cid]nativeCode), builtInCode: make(map[cid.Cid]nativeCode),
builtInState: make(map[cid.Cid]reflect.Type), builtInState: make(map[cid.Cid]reflect.Type),
} }