From c95ed87620db19fa1a84f7528639a38888d46ecc Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Thu, 31 May 2018 21:12:48 +0200 Subject: [PATCH] Fix ethereum backend service descriptors --- contrib/backends/ethereum/debian/ethereum-eth.service | 4 ++-- contrib/backends/ethereum/debian/ethereum-ropsten.service | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/backends/ethereum/debian/ethereum-eth.service b/contrib/backends/ethereum/debian/ethereum-eth.service index 44521816..fb6ff339 100644 --- a/contrib/backends/ethereum/debian/ethereum-eth.service +++ b/contrib/backends/ethereum/debian/ethereum-eth.service @@ -1,11 +1,11 @@ # It is not recommended to modify this file in-place, because it will # be overwritten during package upgrades. If you want to add further # options or overwrite existing ones then use -# $ systemctl edit blockbook-eth.service +# $ systemctl edit ethereum-eth.service # See "man systemd.service" for details. [Unit] -Description=Ethereum daemon (ropsten testnet) +Description=Ethereum daemon (mainnet) After=network.target [Service] diff --git a/contrib/backends/ethereum/debian/ethereum-ropsten.service b/contrib/backends/ethereum/debian/ethereum-ropsten.service index b1f68274..93fa69e9 100644 --- a/contrib/backends/ethereum/debian/ethereum-ropsten.service +++ b/contrib/backends/ethereum/debian/ethereum-ropsten.service @@ -1,19 +1,19 @@ # It is not recommended to modify this file in-place, because it will # be overwritten during package upgrades. If you want to add further # options or overwrite existing ones then use -# $ systemctl edit blockbook-eth-ropsten.service +# $ systemctl edit ethereum-ropsten.service # See "man systemd.service" for details. [Unit] -Description=Ethereum daemon (mainnet) +Description=Ethereum daemon (ropsten testnet) After=network.target [Service] -ExecStart=/bin/sh -c '/opt/coins/nodes/ethereum/eth/geth --ipcdisable --syncmode full --testnet --cache 1024 --datadir /opt/coins/data/eth-ropsten/eth --port 48333 --ws --wsaddr 0.0.0.0 --wsport 18036 --wsorigins * 2>/opt/coins/data/eth/eth-ropsten/eth.log' +ExecStart=/bin/sh -c '/opt/coins/nodes/ethereum/eth-ropsten/geth --ipcdisable --testnet --cache 1024 --datadir /opt/coins/data/eth-ropsten/eth --port 48333 --ws --wsaddr 0.0.0.0 --wsport 18036 --wsorigins * 2>/opt/coins/data/eth-ropsten/eth/eth.log' User=ethereum Type=simple Restart=on-failure -WorkingDirectory=/opt/coins/nodes/ethereum/eth +WorkingDirectory=/opt/coins/nodes/ethereum/eth-ropsten/ # Resource limits LimitNOFILE=500000