aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-13 04:52:37 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-13 04:52:37 +0800
commit6eacc8eab9ad605c76a936361c0015d1ba905da1 (patch)
treeb54f0f89513d08715b24bb7e546ced31b56d518c
parent00878e5b6e09e4e5f38857f1abab7b9cbad4b480 (diff)
downloadgo-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.tar
go-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.tar.gz
go-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.tar.bz2
go-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.tar.lz
go-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.tar.xz
go-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.tar.zst
go-tangerine-6eacc8eab9ad605c76a936361c0015d1ba905da1.zip
eth-go -> go-ethereum
-rw-r--r--chain/asm.go2
-rw-r--r--p2p/connection.go2
-rw-r--r--p2p/message.go2
-rw-r--r--p2p/messenger_test.go2
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"
)