From 9cca702ac2af59ea254a2454a58ba0a07ac13d03 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Thu, 7 Nov 2024 18:05:31 +0300 Subject: [PATCH] emit: add some package doc People use it more often than they should, discourage that a bit, it's rarely really needed. Signed-off-by: Roman Khimov --- pkg/vm/emit/emit.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/vm/emit/emit.go b/pkg/vm/emit/emit.go index 838281325..bca4e41fc 100644 --- a/pkg/vm/emit/emit.go +++ b/pkg/vm/emit/emit.go @@ -1,3 +1,11 @@ +/* +Package emit implements low-level functions for Neo VM script creation. + +This package is not intended to be used by applications directly, see +smartcontract package for more convenient ways to create standard and +well-known scripts. Use this package only if you can't create the script +you need in any other way. +*/ package emit import (