This commit is contained in:
obscuren 2014-05-13 12:45:47 +02:00
parent 03371b74d7
commit 32c6126593
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ func main() {
}
if StartRpc {
ethereum.RpcServer = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum))
ethereum.RpcServer, err = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum))
if err != nil {
log.Println("Could not start RPC interface:", err)
} else {

View File

@ -133,7 +133,7 @@ func main() {
go console.Start()
}
if StartRpc {
ethereum.RpcServer, err = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool()))
ethereum.RpcServer, err = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum))
if err != nil {
logger.Infoln("Could not start RPC interface:", err)
} else {