diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-10-20 16:14:10 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-21 21:09:34 +0800 |
commit | 1e0c336d293367bb75df494a685cabb2029f318e (patch) | |
tree | 247cb97053f24b1a8b84d66e8e4a2e3030453450 /cmd/puppeth/module_ethstats.go | |
parent | 9e095251b71255ff346ee9300df8754eb6b64903 (diff) | |
download | dexon-1e0c336d293367bb75df494a685cabb2029f318e.tar dexon-1e0c336d293367bb75df494a685cabb2029f318e.tar.gz dexon-1e0c336d293367bb75df494a685cabb2029f318e.tar.bz2 dexon-1e0c336d293367bb75df494a685cabb2029f318e.tar.lz dexon-1e0c336d293367bb75df494a685cabb2029f318e.tar.xz dexon-1e0c336d293367bb75df494a685cabb2029f318e.tar.zst dexon-1e0c336d293367bb75df494a685cabb2029f318e.zip |
cmd/puppeth: etherchain light block explorer for PoW nets
Diffstat (limited to 'cmd/puppeth/module_ethstats.go')
-rw-r--r-- | cmd/puppeth/module_ethstats.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/puppeth/module_ethstats.go b/cmd/puppeth/module_ethstats.go index 7ce3ca3cd..b9874cf58 100644 --- a/cmd/puppeth/module_ethstats.go +++ b/cmd/puppeth/module_ethstats.go @@ -34,9 +34,9 @@ var ethstatsDockerfile = ` FROM mhart/alpine-node:latest RUN \ - apk add --update git && \ - git clone --depth=1 https://github.com/karalabe/eth-netstats && \ - apk del git && rm -rf /var/cache/apk/* && \ + apk add --update git && \ + git clone --depth=1 https://github.com/puppeth/eth-netstats && \ + apk del git && rm -rf /var/cache/apk/* && \ \ cd /eth-netstats && npm install && npm install -g grunt-cli && grunt |