aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-05-02 19:35:03 +0800
committerMaran <maran.hidskes@gmail.com>2014-05-02 19:35:03 +0800
commit3424bf17ca791b97ea512bef5290d1a52c1758af (patch)
tree247dafa437609d9e2c53376adb2afa6cbbcbacc4 /ethereum
parent1b597b8ca9ee9564f29b93e1ba5877e012a8d989 (diff)
downloadgo-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.tar
go-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.tar.gz
go-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.tar.bz2
go-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.tar.lz
go-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.tar.xz
go-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.tar.zst
go-tangerine-3424bf17ca791b97ea512bef5290d1a52c1758af.zip
Moved RPC Server and implemented it as a package
Diffstat (limited to 'ethereum')
-rw-r--r--ethereum/config.go2
-rw-r--r--ethereum/ethereum.go5
2 files changed, 7 insertions, 0 deletions
diff --git a/ethereum/config.go b/ethereum/config.go
index b796af5cd..234e79f12 100644
--- a/ethereum/config.go
+++ b/ethereum/config.go
@@ -6,6 +6,7 @@ import (
var StartConsole bool
var StartMining bool
+var StartRpc bool
var UseUPnP bool
var OutboundPort string
var ShowGenesis bool
@@ -24,6 +25,7 @@ func Init() {
flag.BoolVar(&StartMining, "m", false, "start dagger mining")
flag.BoolVar(&ShowGenesis, "g", false, "prints genesis header and exits")
//flag.BoolVar(&UseGui, "gui", true, "use the gui")
+ flag.BoolVar(&StartRpc, "r", false, "start rpc server")
flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)")
flag.BoolVar(&UseUPnP, "upnp", false, "enable UPnP support")
flag.BoolVar(&UseSeed, "seed", true, "seed peers")
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go
index 04851d2bd..0b56855e0 100644
--- a/ethereum/ethereum.go
+++ b/ethereum/ethereum.go
@@ -4,6 +4,7 @@ import (
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
+ "github.com/ethereum/eth-go/etherpc"
"github.com/ethereum/eth-go/ethminer"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/go-ethereum/utils"
@@ -131,6 +132,10 @@ func main() {
console := NewConsole(ethereum)
go console.Start()
}
+ if StartRpc {
+ ethereum.RpcServer = etherpc.NewJsonRpcServer()
+ go ethereum.RpcServer.Start()
+ }
RegisterInterrupts(ethereum)
ethereum.Start()