-
Notifications
You must be signed in to change notification settings - Fork 101
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
Implement Fallback Beacon Node Selection for Charon #3328
Comments
3 tasks
obol-bulldozer bot
pushed a commit
that referenced
this issue
Jan 7, 2025
Implement a way to provide eth2wrap with two classes of beacon nodes addresses: standard and fallback beacon nodes. When one of the multi BN calls fails, eth2wrap wrappers will try to get an available fallback BN from a list and re-do the call on that. If no fallback BNs is specified, return the original error. If the fallback BN call fails, return fallback error instead. This PR firstly introduces concepts and code, will introduce CLI parameters and initialization code later. category: feature ticket: #3328
DiogoSantoss
pushed a commit
that referenced
this issue
Jan 7, 2025
Implement a way to provide eth2wrap with two classes of beacon nodes addresses: standard and fallback beacon nodes. When one of the multi BN calls fails, eth2wrap wrappers will try to get an available fallback BN from a list and re-do the call on that. If no fallback BNs is specified, return the original error. If the fallback BN call fails, return fallback error instead. This PR firstly introduces concepts and code, will introduce CLI parameters and initialization code later. category: feature ticket: #3328
DiogoSantoss
pushed a commit
that referenced
this issue
Jan 14, 2025
Implement a way to provide eth2wrap with two classes of beacon nodes addresses: standard and fallback beacon nodes. When one of the multi BN calls fails, eth2wrap wrappers will try to get an available fallback BN from a list and re-do the call on that. If no fallback BNs is specified, return the original error. If the fallback BN call fails, return fallback error instead. This PR firstly introduces concepts and code, will introduce CLI parameters and initialization code later. category: feature ticket: #3328
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🎯 Problem to be solved
Charon currently doesn't have a reliable way to handle beacon node failures, which could lead to interruptions. We need to improve Charon's ability to switch to backup beacon nodes when the primary node fails.
🛠️ Proposed solution
The text was updated successfully, but these errors were encountered: