From 101d48cd27f55302e373e2e2e2678bd669d86d1a Mon Sep 17 00:00:00 2001 From: BlockChainDev Date: Fri, 15 Mar 2019 22:35:12 +0000 Subject: [PATCH] Move opcode file --- pkg/vm/{instructions.go => stack/instruction.go} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename pkg/vm/{instructions.go => stack/instruction.go} (99%) diff --git a/pkg/vm/instructions.go b/pkg/vm/stack/instruction.go similarity index 99% rename from pkg/vm/instructions.go rename to pkg/vm/stack/instruction.go index 6a78f6a6a..1317a1e3e 100644 --- a/pkg/vm/instructions.go +++ b/pkg/vm/stack/instruction.go @@ -1,4 +1,4 @@ -package vm +package stack // Instruction represents a operation code in the neovm type Instruction byte