From 0ddb4d7e88a72e651621b17a5982de85ac657dc7 Mon Sep 17 00:00:00 2001 From: Alexander Casassovici Date: Sat, 16 Dec 2017 21:00:02 -0800 Subject: [PATCH] Assign 25% CPU by default to serve light clients Longer term solution to issue #15454. By making geth default behavior to serve light clients, we'll improve the overall network capacity and support the light client use case. --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 30edf199c9..a4394c24e4 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -173,7 +173,7 @@ var ( LightServFlag = cli.IntFlag{ Name: "lightserv", Usage: "Maximum percentage of time allowed for serving LES requests (0-90)", - Value: 0, + Value: 25, } LightPeersFlag = cli.IntFlag{ Name: "lightpeers",