[#2] Fix comments

Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
This commit is contained in:
Ekaterina Lebedeva 2023-08-07 11:56:12 +03:00
parent 9e3ac59aa8
commit 401d54dda4
2 changed files with 8 additions and 8 deletions

View file

@ -9,7 +9,7 @@ import (
"github.com/nspcc-dev/neo-go/pkg/vm/vmstate"
)
// InstrHash maps Instruction with its Script Hash.
// InstrHash maps instruction with scripthash of a contract it belongs to.
type InstrHash struct {
Offset int
Instruction opcode.Opcode
@ -17,9 +17,9 @@ type InstrHash struct {
}
// Run starts execution of the loaded program and accumulates all seen opcodes
// together with the scripthash they belong to.
// together with the scripthash of a contract they belong to.
// Original vm.Run(): https://github.com/nspcc-dev/neo-go/blob/v0.101.3/pkg/vm/vm.go#L418
func Run(v *vm.VM) ([]InstrHash, error) {
if !v.Ready() {
return nil, errors.New("no program loaded")
}