You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting lighthouse vc –http alone wouldn’t start the validator client HTTP API. HTTP API queries will get connection refused.
Once lighthouse bn –http is started, only then the validator client logs INFO HTTP API started and HTTP API queries works. If the bn is stopped afterwards, the validator client HTTP API calls still work.
From @michaelsproul, the reason being that the validator client waits to fetch genesis from the BN on start-up here:
Starting lighthouse vc –http alone wouldn’t start the validator client HTTP API
Expected Behaviour
Starting lighthouse vc –http alone should start the validator client HTTP API
Steps to resolve
From @michaelsproul, a possible solution is to refactor that so that the validator client just gets those values (or from the hardcoded genesis state in the network config)
The text was updated successfully, but these errors were encountered:
Description
Starting
lighthouse vc –http
alone wouldn’t start the validator client HTTP API. HTTP API queries will get connection refused.Once
lighthouse bn –http
is started, only then the validator client logsINFO HTTP API started
and HTTP API queries works. If the bn is stopped afterwards, the validator client HTTP API calls still work.From @michaelsproul, the reason being that the validator client waits to fetch genesis from the BN on start-up here:
lighthouse/validator_client/src/lib.rs
Lines 384 to 388 in 441fc16
Version
Lighthouse v4.5.0-441fc16
Present Behaviour
Starting
lighthouse vc –http
alone wouldn’t start the validator client HTTP APIExpected Behaviour
Starting
lighthouse vc –http
alone should start the validator client HTTP APISteps to resolve
From @michaelsproul, a possible solution is to refactor that so that the validator client just gets those values (or from the hardcoded genesis state in the network config)
The text was updated successfully, but these errors were encountered: