aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethereum/main.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-01 04:07:46 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-01 04:07:46 +0800
commitcdb77f0ecd239fe7a5494891c6a42645904a432b (patch)
tree27b9a42b43b0bbb7c54a78885cb48d8a40abb3d3 /cmd/ethereum/main.go
parent43b5777709d9b867d1e2331d5586b914207f354f (diff)
parentea0517b5396efc7bd47f820ec0263f68f76f29a4 (diff)
downloaddexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.tar
dexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.tar.gz
dexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.tar.bz2
dexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.tar.lz
dexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.tar.xz
dexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.tar.zst
dexon-cdb77f0ecd239fe7a5494891c6a42645904a432b.zip
Merge pull request #402 from tgerring/rpcupdates
Set RPC listening address via param
Diffstat (limited to 'cmd/ethereum/main.go')
-rw-r--r--cmd/ethereum/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index f72b11e14..07ef0d5dd 100644
--- a/cmd/ethereum/main.go
+++ b/cmd/ethereum/main.go
@@ -128,7 +128,7 @@ func main() {
}
if StartRpc {
- utils.StartRpc(ethereum, RpcPort)
+ utils.StartRpc(ethereum, RpcListenAddress, RpcPort)
}
if StartWebSockets {