aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-21 19:25:31 +0800
committerobscuren <geffobscura@gmail.com>2014-10-21 19:25:31 +0800
commit520fdfe346ab51708f4f1fdfd0b2e42cc919e613 (patch)
tree51e9bef882bee329c18c85102fb98350d5880b0e /ethereum.go
parent10b252dd0517175117d8d4a8ef30b3689a10eda5 (diff)
downloadgo-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar
go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.gz
go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.bz2
go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.lz
go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.xz
go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.tar.zst
go-tangerine-520fdfe346ab51708f4f1fdfd0b2e42cc919e613.zip
PoC7 Net
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/ethereum.go b/ethereum.go
index bb8d6db73..5209115da 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -17,16 +17,16 @@ import (
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethcrypto"
"github.com/ethereum/eth-go/ethlog"
- "github.com/ethereum/eth-go/ethrpc"
"github.com/ethereum/eth-go/ethstate"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
"github.com/ethereum/eth-go/event"
+ "github.com/ethereum/eth-go/rpc"
)
const (
seedTextFileUri string = "http://www.ethereum.org/servers.poc3.txt"
- seedNodeAddress = "poc-6.ethdev.com:30303"
+ seedNodeAddress = "poc-7.ethdev.com:30303"
)
var ethlogger = ethlog.NewLogger("SERV")
@@ -84,7 +84,7 @@ type Ethereum struct {
listening bool
- RpcServer *ethrpc.JsonRpcServer
+ RpcServer *rpc.JsonRpcServer
keyManager *ethcrypto.KeyManager