diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-01 04:07:46 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-01 04:07:46 +0800 |
commit | cdb77f0ecd239fe7a5494891c6a42645904a432b (patch) | |
tree | 27b9a42b43b0bbb7c54a78885cb48d8a40abb3d3 /cmd/ethereum/main.go | |
parent | 43b5777709d9b867d1e2331d5586b914207f354f (diff) | |
parent | ea0517b5396efc7bd47f820ec0263f68f76f29a4 (diff) | |
download | dexon-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.go | 2 |
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 { |