diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-28 08:00:42 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-28 08:00:42 +0800 |
commit | f6e821fd335911c26d515094ac0af4fa69526279 (patch) | |
tree | 99f80c562d2a1735d80baf887835a13c7696e919 /cmd/ethereum/main.go | |
parent | ad3a21f260a0b13048046f6c76fe5f47bdcc46de (diff) | |
download | dexon-f6e821fd335911c26d515094ac0af4fa69526279.tar.gz dexon-f6e821fd335911c26d515094ac0af4fa69526279.tar.zst dexon-f6e821fd335911c26d515094ac0af4fa69526279.zip |
Add flag to set RPC port
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 45e6f7b93..8afab5d28 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 { |