@@ -7,8 +7,8 @@ use futures::{FutureExt, StreamExt};
77use helper_functions:: misc;
88use libp2p:: core:: { InboundUpgrade , UpgradeInfo } ;
99use ssz:: {
10- BYTES_PER_LENGTH_OFFSET , ByteList , ContiguousList , H256 , ReadError , SszSize as _ ,
11- SszWrite as _, WriteError ,
10+ BYTES_PER_LENGTH_OFFSET , ByteList , ContiguousList , H256 , ProgressiveList , ReadError ,
11+ SszSize as _ , SszWrite as _, WriteError ,
1212} ;
1313use std:: io;
1414use std:: marker:: PhantomData ;
@@ -200,16 +200,16 @@ fn full_gloas_signed_execution_payload_envelope_size() -> usize {
200200 message : ExecutionPayloadEnvelope {
201201 payload : ExecutionPayload {
202202 extra_data : Arc :: new ( ByteList :: from ( ContiguousList :: full ( u8:: MAX ) ) ) ,
203- transactions : Arc :: new ( ContiguousList :: default ( ) ) ,
204- withdrawals : ContiguousList :: full ( Withdrawal :: default ( ) ) ,
203+ transactions : Arc :: new ( ProgressiveList :: default ( ) ) ,
204+ withdrawals : ProgressiveList :: full ( Withdrawal :: default ( ) ) ,
205205 ..Default :: default ( )
206206 } ,
207207 execution_requests : ExecutionRequests {
208- deposits : ContiguousList :: full ( DepositRequest :: default ( ) ) ,
209- withdrawals : ContiguousList :: full ( WithdrawalRequest :: default ( ) ) ,
210- consolidations : ContiguousList :: full ( ConsolidationRequest :: default ( ) ) ,
211- builder_deposits : ContiguousList :: full ( BuilderDepositRequest :: default ( ) ) ,
212- builder_exits : ContiguousList :: full ( BuilderExitRequest :: default ( ) ) ,
208+ deposits : ProgressiveList :: full ( DepositRequest :: default ( ) ) ,
209+ withdrawals : ProgressiveList :: full ( WithdrawalRequest :: default ( ) ) ,
210+ consolidations : ProgressiveList :: full ( ConsolidationRequest :: default ( ) ) ,
211+ builder_deposits : ProgressiveList :: full ( BuilderDepositRequest :: default ( ) ) ,
212+ builder_exits : ProgressiveList :: full ( BuilderExitRequest :: default ( ) ) ,
213213 } ,
214214 ..Default :: default ( )
215215 } ,
0 commit comments