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
We need to fetch the Validator index for each Validator in the network from the BN. This requires refactoring the entire execution layer to async just to fetch the index, so we decided it is best to push it downstream. Most likely, this will just be some long running task that will periodically fetch the index for all new validators and store it into the database. This is what is done in the go-ssv client for reference.
The text was updated successfully, but these errors were encountered:
Cool, yep it was the plan to include the index at the EL but didnt pan out so its currently just being defaulted to 0. Easier to give a default value rather than make it optional for state reconstruction on restart.
Description
We need to fetch the Validator index for each Validator in the network from the BN. This requires refactoring the entire execution layer to async just to fetch the index, so we decided it is best to push it downstream. Most likely, this will just be some long running task that will periodically fetch the index for all new validators and store it into the database. This is what is done in the go-ssv client for reference.
The text was updated successfully, but these errors were encountered: