@@ -790,7 +790,7 @@ where
790790 ) )
791791 } ) ?;
792792
793- * evm. tx_mut ( ) = self . evm_config . tx_env ( sequencer_tx. as_signed ( ) , sequencer_tx. signer ( ) ) ;
793+ * evm. tx_mut ( ) = self . evm_config . tx_env ( sequencer_tx. tx ( ) , sequencer_tx. signer ( ) ) ;
794794
795795 let ResultAndState { result, state } = match evm. transact ( ) {
796796 Ok ( res) => res,
@@ -841,7 +841,7 @@ where
841841
842842 // append sender and transaction to the respective lists
843843 info. executed_senders . push ( sequencer_tx. signer ( ) ) ;
844- info. executed_transactions . push ( sequencer_tx. into_signed ( ) ) ;
844+ info. executed_transactions . push ( sequencer_tx. into_tx ( ) ) ;
845845 }
846846
847847 Ok ( info)
@@ -891,7 +891,7 @@ where
891891 }
892892
893893 // Configure the environment for the tx.
894- * evm. tx_mut ( ) = self . evm_config . tx_env ( tx. as_signed ( ) , tx. signer ( ) ) ;
894+ * evm. tx_mut ( ) = self . evm_config . tx_env ( tx. tx ( ) , tx. signer ( ) ) ;
895895
896896 let ResultAndState { result, state } = match evm. transact ( ) {
897897 Ok ( res) => res,
@@ -954,7 +954,7 @@ where
954954
955955 // append sender and transaction to the respective lists
956956 info. executed_senders . push ( tx. signer ( ) ) ;
957- info. executed_transactions . push ( tx. into_signed ( ) ) ;
957+ info. executed_transactions . push ( tx. into_tx ( ) ) ;
958958 }
959959
960960 Ok ( None )
0 commit comments