@@ -103,7 +103,7 @@ impl<ExtraCtx: Debug + Default, EF> OpPayloadBuilderCtx<ExtraCtx, EF> {
103103 Self { cancel, ..self }
104104 }
105105
106- pub ( super ) fn to_lazy_evm ( self ) -> OpPayloadBuilderCtx < ExtraCtx , OpLazyEvmFactory > {
106+ pub ( super ) fn into_lazy_evm ( self ) -> OpPayloadBuilderCtx < ExtraCtx , OpLazyEvmFactory > {
107107 let OpPayloadBuilderCtx {
108108 evm_config,
109109 da_config,
@@ -908,13 +908,13 @@ impl<ExtraCtx: Debug + Default> OpPayloadBuilderCtx<ExtraCtx, OpLazyEvmFactory>
908908 let exec_result = match exec_result {
909909 Ok ( res) => res,
910910 Err ( err) => {
911- if let Some ( err) = err. as_invalid_tx_err ( ) {
912- if !err. is_nonce_too_low ( ) {
913- shared_best_txs
914- . lock ( )
915- . unwrap ( )
916- . mark_invalid ( tx . signer ( ) , tx . nonce ( ) ) ;
917- }
911+ if let Some ( err) = err. as_invalid_tx_err ( )
912+ && !err. is_nonce_too_low ( )
913+ {
914+ shared_best_txs
915+ . lock ( )
916+ . unwrap ( )
917+ . mark_invalid ( tx . signer ( ) , tx . nonce ( ) ) ;
918918 }
919919 // Get captured reads even on failure
920920 let captured_reads =
@@ -991,6 +991,7 @@ impl<ExtraCtx: Debug + Default> OpPayloadBuilderCtx<ExtraCtx, OpLazyEvmFactory>
991991
992992 // Add writes only for values that actually changed
993993 for ( addr, account) in state. iter ( ) {
994+ debug ! ( "Account touched: {}" , addr) ;
994995 if account. is_touched ( ) {
995996 // Get original values from captured reads (if available)
996997 let original_balance = captured_reads. get_balance ( * addr) ;
0 commit comments