diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-05 07:34:59 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-05 07:34:59 +0800 |
commit | 48488017e498916c81122c01cfe1880afdd00d48 (patch) | |
tree | 1b0c3d95cf9fbe66aa9f7dcbe37a0a9dc19bfe86 /vm/analysis.go | |
parent | b4da085a9fa0b578c7e91a9606a15a018b340d95 (diff) | |
download | go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.tar go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.tar.gz go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.tar.bz2 go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.tar.lz go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.tar.xz go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.tar.zst go-tangerine-48488017e498916c81122c01cfe1880afdd00d48.zip |
Proper packages
Diffstat (limited to 'vm/analysis.go')
-rw-r--r-- | vm/analysis.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/analysis.go b/vm/analysis.go index 22feb4c94..52c7143e0 100644 --- a/vm/analysis.go +++ b/vm/analysis.go @@ -3,7 +3,7 @@ package vm import ( "math/big" - "github.com/ethereum/ethutil" + "github.com/ethereum/go-ethereum/ethutil" ) func analyseJumpDests(code []byte) (dests map[int64]*big.Int) { |