diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-17 09:44:08 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-01-17 09:44:08 +0800 |
commit | 33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9 (patch) | |
tree | 1645134ac99d236e25bdcca1376ddf659c75cafa /core/asm | |
parent | 6efb418c13aab7535b974014946fc4e9af94e405 (diff) | |
download | dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.tar dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.tar.gz dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.tar.bz2 dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.tar.lz dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.tar.xz dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.tar.zst dexon-33f3f8254a83ccbaba1e61ca1c7b3b6390794cd9.zip |
Revert "core: vm: refactor file structure (#151)"
This reverts commit 020c8a477578cef3764b54f33d9ca0cf6caf7631.
Diffstat (limited to 'core/asm')
-rw-r--r-- | core/asm/asm.go | 2 | ||||
-rw-r--r-- | core/asm/compiler.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/asm/asm.go b/core/asm/asm.go index 164f3c29e..8dbb45ed3 100644 --- a/core/asm/asm.go +++ b/core/asm/asm.go @@ -21,7 +21,7 @@ import ( "encoding/hex" "fmt" - vm "github.com/dexon-foundation/dexon/core/vm/evm" + "github.com/dexon-foundation/dexon/core/vm" ) // Iterator for disassembled EVM instructions diff --git a/core/asm/compiler.go b/core/asm/compiler.go index 9a2f4a9aa..b1c7c76f0 100644 --- a/core/asm/compiler.go +++ b/core/asm/compiler.go @@ -23,7 +23,7 @@ import ( "strings" "github.com/dexon-foundation/dexon/common/math" - vm "github.com/dexon-foundation/dexon/core/vm/evm" + "github.com/dexon-foundation/dexon/core/vm" ) // Compiler contains information about the parsed source |