From 6eacc8eab9ad605c76a936361c0015d1ba905da1 Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Wed, 12 Nov 2014 21:52:37 +0100 Subject: [PATCH] eth-go -> go-ethereum --- chain/asm.go | 2 +- p2p/connection.go | 2 +- p2p/message.go | 2 +- p2p/messenger_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chain/asm.go b/chain/asm.go index 4ca6c7fdf..5a2e961ac 100644 --- a/chain/asm.go +++ b/chain/asm.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" + "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/vm" - "github.com/ethgo.old/ethutil" ) func Disassemble(script []byte) (asm []string) { diff --git a/p2p/connection.go b/p2p/connection.go index e999cbe55..be366235d 100644 --- a/p2p/connection.go +++ b/p2p/connection.go @@ -6,7 +6,7 @@ import ( "net" "time" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethutil" ) type Connection struct { diff --git a/p2p/message.go b/p2p/message.go index 4886eaa1f..446e74dff 100644 --- a/p2p/message.go +++ b/p2p/message.go @@ -2,7 +2,7 @@ package p2p import ( // "fmt" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethutil" ) type MsgCode uint8 diff --git a/p2p/messenger_test.go b/p2p/messenger_test.go index bc21d34ba..f56e4ab2b 100644 --- a/p2p/messenger_test.go +++ b/p2p/messenger_test.go @@ -3,7 +3,7 @@ package p2p import ( // "fmt" "bytes" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethutil" "testing" "time" )