aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/flags.go
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-16 19:30:53 +0800
committerBas van Kervel <bas@ethdev.com>2015-06-22 14:54:21 +0800
commit5c25403b13a698267230f859e822a7f714082198 (patch)
treee1c06257da1f318a331990165723c1f05447c117 /cmd/utils/flags.go
parentfd764d4ff7bd7e75dfdd7f733f50dd3805d4b3f2 (diff)
downloadgo-tangerine-5c25403b13a698267230f859e822a7f714082198.tar
go-tangerine-5c25403b13a698267230f859e822a7f714082198.tar.gz
go-tangerine-5c25403b13a698267230f859e822a7f714082198.tar.bz2
go-tangerine-5c25403b13a698267230f859e822a7f714082198.tar.lz
go-tangerine-5c25403b13a698267230f859e822a7f714082198.tar.xz
go-tangerine-5c25403b13a698267230f859e822a7f714082198.tar.zst
go-tangerine-5c25403b13a698267230f859e822a7f714082198.zip
refactored old rpc structure to new
Diffstat (limited to 'cmd/utils/flags.go')
-rw-r--r--cmd/utils/flags.go19
1 files changed, 15 insertions, 4 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 696dbd142..e0eefb3e3 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -22,7 +22,6 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/p2p/nat"
- "github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/rpc/api"
"github.com/ethereum/go-ethereum/rpc/codec"
"github.com/ethereum/go-ethereum/rpc/comms"
@@ -209,13 +208,18 @@ var (
Usage: "Domain on which to send Access-Control-Allow-Origin header",
Value: "",
}
+ RpcApiFlag = cli.StringFlag{
+ Name: "rpcapi",
+ Usage: "Specify the API's which are offered over the HTTP RPC interface",
+ Value: api.DefaultHttpRpcApis,
+ }
IPCDisabledFlag = cli.BoolFlag{
Name: "ipcdisable",
Usage: "Disable the IPC-RPC server",
}
IPCApiFlag = cli.StringFlag{
Name: "ipcapi",
- Usage: "Specify the API's which are offered over this interface",
+ Usage: "Specify the API's which are offered over the IPC interface",
Value: api.DefaultIpcApis,
}
IPCPathFlag = DirectoryFlag{
@@ -457,14 +461,21 @@ func StartIPC(eth *eth.Ethereum, ctx *cli.Context) error {
}
func StartRPC(eth *eth.Ethereum, ctx *cli.Context) error {
- config := rpc.RpcConfig{
+ config := comms.HttpConfig{
ListenAddress: ctx.GlobalString(RPCListenAddrFlag.Name),
ListenPort: uint(ctx.GlobalInt(RPCPortFlag.Name)),
CorsDomain: ctx.GlobalString(RPCCORSDomainFlag.Name),
}
xeth := xeth.New(eth, nil)
- return rpc.Start(xeth, config)
+ codec := codec.JSON
+
+ apis, err := api.ParseApiString(ctx.GlobalString(RpcApiFlag.Name), codec, xeth, eth)
+ if err != nil {
+ return err
+ }
+
+ return comms.StartHttp(config, codec, apis...)
}
func StartPProf(ctx *cli.Context) {