Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Changes per spec
process_slotmodified (per_slot_processing)process_epochmodified (per_epoch_processing)process_builder_pending_paymentsaddedget_builder_payment_quorum_thresholdaddedHow this works
process_slotwill now unset the next slot'sBeaconState. execution_payload_availability, which contains a ring buffer indexed per slot. We clear the next slot's bit at every slot boundary as to start the slot off as a "no payload yet" state.process_epochwill now runprocess_builder_pending_paymentsat the end. The sole focus of this new function is to loop over thestate.builder_pending_paymentsleft over from the previous epoch that did not get converted tostate.builder_pending_withdrawalsduring the fast past conversion because they were associated with CL blocks that did not release their corresponding execution envelopes. Soprocess_builder_pending_paymentswill check that if the accumulated weights for thesestate.builder_pending_paymentsfrom last epoch are higher than a quorum value. If so, they'll be converted tobuilder_pending_withdrawalwith awithdrawable_epoch.@ethDreamer