eth-go -> go-ethereum

This commit is contained in:
Taylor Gerring 2014-11-12 21:52:37 +01:00
parent 00878e5b6e
commit 6eacc8eab9
4 changed files with 4 additions and 4 deletions

View File

@ -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) {

View File

@ -6,7 +6,7 @@ import (
"net"
"time"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/go-ethereum/ethutil"
)
type Connection struct {

View File

@ -2,7 +2,7 @@ package p2p
import (
// "fmt"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/go-ethereum/ethutil"
)
type MsgCode uint8

View File

@ -3,7 +3,7 @@ package p2p
import (
// "fmt"
"bytes"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/go-ethereum/ethutil"
"testing"
"time"
)