Update les/server_handler.go

Co-Authored-By: ligi <ligi@ligi.de>
This commit is contained in:
Adam Schmideg 2020-02-11 14:46:18 +01:00 committed by GitHub
parent 5cbfbfff2d
commit 3ffce8c067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,7 +128,7 @@ func (h *serverHandler) handle(p *peer) error {
}
// Reject light clients if server is not synced.
if !h.synced() {
p.Log().Debug("Light server not synced, so it's rejecting client", p)
p.Log().Debug("Light server not synced, so it's rejecting the client", p)
return p2p.DiscRequested
}
defer p.fcClient.Disconnect()