aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/ethereum.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethereum/ethereum.go')
-rw-r--r--ethereum/ethereum.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go
index 829f71e39..1315c0120 100644
--- a/ethereum/ethereum.go
+++ b/ethereum/ethereum.go
@@ -134,10 +134,8 @@ func main() {
go console.Start()
}
if StartRpc {
- // TODO: Can we make this work again?
- //ethereum.RpcServer = etherpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum))
- rpc := etherpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum))
- go rpc.Start()
+ ethereum.RpcServer = etherpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool()))
+ go ethereum.RpcServer.Start()
}
RegisterInterrupts(ethereum)