Implemented rpc for ethereal and ethereum

This commit is contained in:
Maran
2014-05-05 14:16:14 +02:00
parent bcb3ad7332
commit e94e5ac75d
3 changed files with 10 additions and 5 deletions

View File

@ -4,6 +4,8 @@ import (
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/etherpc"
"github.com/ethereum/eth-go/ethpub"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/go-ethereum/ethereal/ui"
"github.com/ethereum/go-ethereum/utils"
@ -98,6 +100,11 @@ func main() {
os.Exit(0)
}
if StartRpc {
ethereum.RpcServer = etherpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool()))
go ethereum.RpcServer.Start()
}
log.Printf("Starting Ethereum GUI v%s\n", ethutil.Config.Ver)
// Set the max peers