From b4da085a9fa0b578c7e91a9606a15a018b340d95 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 5 Nov 2014 00:34:04 +0100 Subject: [PATCH] Accidental packages --- chain/asm.go | 2 +- vm/analysis.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chain/asm.go b/chain/asm.go index 4ca6c7fdf..4b12425fd 100644 --- a/chain/asm.go +++ b/chain/asm.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" + "github.com/ethereum/ethutil" "github.com/ethereum/go-ethereum/vm" - "github.com/ethgo.old/ethutil" ) func Disassemble(script []byte) (asm []string) { diff --git a/vm/analysis.go b/vm/analysis.go index 784b55459..22feb4c94 100644 --- a/vm/analysis.go +++ b/vm/analysis.go @@ -3,7 +3,7 @@ package vm import ( "math/big" - "github.com/ethgo.old/ethutil" + "github.com/ethereum/ethutil" ) func analyseJumpDests(code []byte) (dests map[int64]*big.Int) {