Description
After a validator exits, the Lighthouse VC still tries to send registrations to the builder here:
lighthouse/validator_client/validator_services/src/preparation_service.rs
Lines 276 to 297 in 54f7bc5
The attempted activity filtering there only works when the validator has no validator index.
However this works fine if the BN is Lighthouse, because Lighthouse BN filters out the registrations for inactive validators here:
lighthouse/beacon_node/http_api/src/lib.rs
Lines 3913 to 3927 in 54f7bc5
I'm not sure what other BNs do, except for Caplin which reportedly does no filtering and triggers errors on mev-boost as a result.
To fix this we would need to make Lighthouse VC a bit smarter. It currently does no tracking of exit status for validators.