Преглед изворни кода

cmd/puppeth: reserve "yournode" as a non-allowed ethstats user

Péter Szilágyi пре 8 година
родитељ
комит
66a7ef57e6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      cmd/puppeth/module_ethstats.go

+ 1 - 1
cmd/puppeth/module_ethstats.go

@@ -42,7 +42,7 @@ RUN \
 WORKDIR /eth-netstats
 EXPOSE 3000
 
-RUN echo 'module.exports = {trusted: [{{.Trusted}}], banned: [{{.Banned}}]};' > lib/utils/config.js
+RUN echo 'module.exports = {trusted: [{{.Trusted}}], banned: [{{.Banned}}], reserved: ["yournode"]};' > lib/utils/config.js
 
 CMD ["npm", "start"]
 `