mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
cmd/faucet: re-capitalize log message
This commit is contained in:
parent
f01e7d251d
commit
9ada83c4bc
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ func (f *faucet) apiHandler(w http.ResponseWriter, r *http.Request) {
|
|||
// Report the faucet offline until initial stats are ready
|
||||
//lint:ignore ST1005 This error is to be displayed in the browser
|
||||
if err = sendError(conn, errors.New("Faucet offline")); err != nil {
|
||||
log.Warn("failed to send faucet error to client", "err", err)
|
||||
log.Warn("Failed to send faucet error to client", "err", err)
|
||||
return
|
||||
}
|
||||
time.Sleep(3 * time.Second)
|
||||
|
|
|
|||
Loading…
Reference in a new issue