-
Notifications
You must be signed in to change notification settings - Fork 62
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
Read consensus spec from a file instead from the CL #201
Comments
Note that even if we load chain spec config values from a file you still need a CL to listen for the beacon node events to trigger block building. |
Thats alright. The idea is rbuilder shouldn't fail to start up just because the CL endpoint is not online yet. |
For context, the issue is a circular dependency:
If rbuilder had support for getting the spec from a file, then the events stream could be best effort. |
Can we "fake" the CL trigger by just sending data to the builder that emulates it? If not, I think we could we implement an API that lets us do that so we could avoid needing a CL altogether (I'm imagining running a Python script that "drives" building). |
Would this work? #203 I would prefer not to load the whole CL spec since we only use one parameter. |
It would be great if there would be no CL dependency of the rbuilder. While the CL endpoint could be provided, it should be optional, and the chain spec config values should be able to be read from a file.
The text was updated successfully, but these errors were encountered: