diff options
author | Maran <maran.hidskes@gmail.com> | 2014-05-14 19:32:49 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-05-14 19:32:49 +0800 |
commit | 9fce273ce97a8db091a0bf9d0b503a2ea7261f81 (patch) | |
tree | e1d0dd2abebb0d363d47a5722579bad0146b72da /ethereum | |
parent | 2012e0c67abd8e3012a3eb1fae2e282e2a442d01 (diff) | |
download | go-tangerine-9fce273ce97a8db091a0bf9d0b503a2ea7261f81.tar.gz go-tangerine-9fce273ce97a8db091a0bf9d0b503a2ea7261f81.tar.zst go-tangerine-9fce273ce97a8db091a0bf9d0b503a2ea7261f81.zip |
Refactored RPC client to utils so it can be reused
Diffstat (limited to 'ethereum')
-rw-r--r-- | ethereum/ethereum.go | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go index 207e61c88..448223c37 100644 --- a/ethereum/ethereum.go +++ b/ethereum/ethereum.go @@ -4,8 +4,6 @@ import ( "fmt" "github.com/ethereum/eth-go" "github.com/ethereum/eth-go/ethchain" - "github.com/ethereum/eth-go/ethpub" - "github.com/ethereum/eth-go/ethrpc" "github.com/ethereum/eth-go/ethutil" "github.com/ethereum/go-ethereum/utils" "log" @@ -139,12 +137,7 @@ func main() { go console.Start() } if StartRpc { - ethereum.RpcServer, err = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum), RpcPort) - if err != nil { - logger.Infoln("Could not start RPC interface:", err) - } else { - go ethereum.RpcServer.Start() - } + utils.DoRpc(ethereum, RpcPort) } RegisterInterrupts(ethereum) |