diff options
author | Maran <maran.hidskes@gmail.com> | 2014-05-05 21:15:14 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-05-05 21:15:14 +0800 |
commit | a4ca9927abc774fe524635a38d2f3bf2c4831278 (patch) | |
tree | 50f576980d53087e951b93a1cb4acfd8a41b2082 /ethereum.go | |
parent | 9b1f11695d544b99ba0b7ddedc4ac561a68d8197 (diff) | |
download | go-tangerine-a4ca9927abc774fe524635a38d2f3bf2c4831278.tar.gz go-tangerine-a4ca9927abc774fe524635a38d2f3bf2c4831278.tar.zst go-tangerine-a4ca9927abc774fe524635a38d2f3bf2c4831278.zip |
Renamed etherpc to ethrpc
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereum.go b/ethereum.go index d6154e213..707938639 100644 --- a/ethereum.go +++ b/ethereum.go @@ -4,7 +4,7 @@ import ( "container/list" "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethdb" - "github.com/ethereum/eth-go/etherpc" + "github.com/ethereum/eth-go/ethrpc" "github.com/ethereum/eth-go/ethutil" "github.com/ethereum/eth-go/ethwire" "io/ioutil" @@ -64,7 +64,7 @@ type Ethereum struct { reactor *ethutil.ReactorEngine - RpcServer *etherpc.JsonRpcServer + RpcServer *ethrpc.JsonRpcServer } func New(caps Caps, usePnp bool) (*Ethereum, error) { |