From 98096f6c20e922b5cbdb82f9063d8791c05c6024 Mon Sep 17 00:00:00 2001 From: BlockChainDev Date: Sun, 17 Mar 2019 18:31:58 +0000 Subject: [PATCH] golint --- pkg/vm/state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/vm/state.go b/pkg/vm/state.go index 64db70f2f..98c5cc912 100644 --- a/pkg/vm/state.go +++ b/pkg/vm/state.go @@ -3,6 +3,7 @@ package vm //Vmstate represents all possible states that the neo-vm can be in type Vmstate byte +// List of possible vm states const ( NONE = 0 HALT = 1 << 0