From a2bdc076d29d74eb72beed1cd59e1346cd9a11ab Mon Sep 17 00:00:00 2001 From: BlockChainDev Date: Mon, 18 Mar 2019 21:17:43 +0000 Subject: [PATCH] [VM] fix 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 1f9fa66df..e207a7ed6 100644 --- a/pkg/vm/vm.go +++ b/pkg/vm/vm.go @@ -30,7 +30,7 @@ func NewVM(script []byte) *VM { return v } -// Run loops over the current context by continuously steppping. +// Run loops over the current context by continuously stepping. // Run breaks; once step returns an error or any state that is not NONE func (v *VM) Run() (Vmstate, error) { for {