You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo [31mThe slasher binary is no longer available. Please use the --slasher flag with your beacon node. See: https://docs.prylabs.network/docs/prysm-usage/slasher/[0m
100
+
exit /b 1
101
+
)
102
+
98
103
if [%1]==[beacon-chain] ( setprocess=%BEACON_CHAIN_REAL%)
99
104
if [%1]==[validator] ( setprocess=%VALIDATOR_REAL%)
100
-
if [%1]==[slasher] ( setprocess=%SLASHER_REAL%)
105
+
if [%1]==[client-stats] ( setprocess=%CLIENT_STATS_REAL%)
101
106
102
107
REM GPG not natively available on Windows, external module required
103
108
echo [33mWARN GPG verification is not natively available on Windows.[0m
color "41""The slasher binary is no longer available. Please use the --slasher flag with your beacon node. See: https://docs.prylabs.network/docs/prysm-usage/slasher/"
216
+
exit 1
217
+
fi
218
+
214
219
case$1in
215
220
beacon-chain)
216
221
readonly process=$BEACON_CHAIN_REAL
@@ -220,15 +225,15 @@ validator)
220
225
readonly process=$VALIDATOR_REAL
221
226
;;
222
227
223
-
slasher)
224
-
readonly process=$SLASHER_REAL
228
+
client-stats)
229
+
readonly process=$CLIENT_STATS_REAL
225
230
;;
226
231
227
232
*)
228
233
color "31""Process '$1' is not found!"
229
234
color "31""Usage: ./prysm.sh PROCESS FLAGS."
230
235
color "31"" ./prysm.sh PROCESS --download-only."
231
-
color "31""PROCESS can be beacon-chain, validator, or slasher."
236
+
color "31""PROCESS can be beacon-chain, validator, or client-stats."
0 commit comments