From e3c360c47715193f671f809ff81fffce5f4ccfd0 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Tue, 15 Sep 2020 21:44:54 +0300 Subject: [PATCH] vm: fix comment typo --- pkg/vm/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/vm/vm.go b/pkg/vm/vm.go index 5ef50aa51..145ecedc1 100644 --- a/pkg/vm/vm.go +++ b/pkg/vm/vm.go @@ -263,7 +263,7 @@ func (v *VM) LoadScript(b []byte) { v.astack = ctx.astack } -// loadScriptWithHash if similar to the LoadScript method, but it also loads +// loadScriptWithHash is similar to the LoadScript method, but it also loads // given script hash directly into the Context to avoid its recalculations. It's // up to user of this function to make sure the script and hash match each other. func (v *VM) loadScriptWithHash(b []byte, hash util.Uint160, hasDynamicInvoke bool) {