-
Notifications
You must be signed in to change notification settings - Fork 20.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flags SyncMode cannot be combined with LightServ in geth v1.8.2 #16345
Comments
I just ran into this updating our systemd script which specifically defined |
|
This is unfortunate since it prevents a |
Works for me
|
Fixed a while back by #17803. |
See comment here: #15514 (comment)
System information
Geth version: v1.8.2
OS & Version: All
Expected behaviour
geth --syncmode=full --lightserv=80
should workActual behaviour
geth --syncmode=full --lightserv=80
produces an error indicating that --syncmode and --lightserv cannot be combinedSteps to reproduce the behaviour
Run:
geth --syncmode=full --lightserv=80
There appears to be an issue with the
checkExclusive
function with respect to string arguments -- they're not really used in the way the comment described above that function suggests they might, this leads to a bug combining --syncmode=full and --lightserv, when it is intended to prevent --syncmode=light and --lightserv from being combined.The text was updated successfully, but these errors were encountered: