diff --git a/pkg/vm/emit/emit.go b/pkg/vm/emit/emit.go index 9c6da396a..fcc246e4f 100644 --- a/pkg/vm/emit/emit.go +++ b/pkg/vm/emit/emit.go @@ -96,7 +96,7 @@ func Array(w *io.BinWriter, es ...interface{}) { Bool(w, e) default: if es[i] != nil { - w.Err = fmt.Errorf("unsupported type: %v", e) + w.Err = fmt.Errorf("unsupported type: %T", e) return } Opcodes(w, opcode.PUSHNULL)