cmd/puppeth: remove outdated mist support (#22940)

This commit is contained in:
Marius van der Wijden
2021-05-27 18:45:13 +02:00
committed by GitHub
parent 427175153c
commit 04cb5e2be3
6 changed files with 5 additions and 398 deletions

View File

@ -141,14 +141,6 @@ func (w *wizard) gatherStats(server string, pubkey []byte, client *sshClient) *s
} else {
stat.services["explorer"] = infos.Report()
}
logger.Debug("Checking for wallet availability")
if infos, err := checkWallet(client, w.network); err != nil {
if err != ErrServiceUnknown {
stat.services["wallet"] = map[string]string{"offline": err.Error()}
}
} else {
stat.services["wallet"] = infos.Report()
}
logger.Debug("Checking for faucet availability")
if infos, err := checkFaucet(client, w.network); err != nil {
if err != ErrServiceUnknown {