@@ -65,7 +65,7 @@ fn transaction_with_max_extrinsic_gas_limit_should_success_pre_dispatch() {
6565
6666 let call = crate :: Call :: < Test > :: transact { transaction } ;
6767 let source = call. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
68- let extrinsic = CheckedExtrinsic :: < u64 , _ , SignedExtra , _ > {
68+ let extrinsic = CheckedExtrinsic :: < u64 , _ , TxExtension , _ > {
6969 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
7070 function : RuntimeCall :: Ethereum ( call. clone ( ) ) ,
7171 } ;
@@ -104,7 +104,7 @@ fn transaction_with_gas_limit_greater_than_max_extrinsic_should_fail_pre_dispatc
104104
105105 let call = crate :: Call :: < Test > :: transact { transaction } ;
106106 let source = call. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
107- let extrinsic = CheckedExtrinsic :: < u64 , _ , SignedExtra , _ > {
107+ let extrinsic = CheckedExtrinsic :: < u64 , _ , TxExtension , _ > {
108108 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
109109 function : RuntimeCall :: Ethereum ( call. clone ( ) ) ,
110110 } ;
@@ -142,7 +142,7 @@ fn transaction_without_enough_gas_should_not_work() {
142142
143143 let call = crate :: Call :: < Test > :: transact { transaction } ;
144144 let source = call. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
145- let extrinsic = CheckedExtrinsic :: < u64 , _ , SignedExtra , _ > {
145+ let extrinsic = CheckedExtrinsic :: < u64 , _ , TxExtension , _ > {
146146 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
147147 function : RuntimeCall :: Ethereum ( call. clone ( ) ) ,
148148 } ;
@@ -169,7 +169,7 @@ fn transaction_with_to_low_nonce_should_not_work() {
169169 transaction : signed,
170170 } ;
171171 let source = call. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
172- let extrinsic = CheckedExtrinsic :: < u64 , _ , SignedExtra , H160 > {
172+ let extrinsic = CheckedExtrinsic :: < u64 , _ , TxExtension , H160 > {
173173 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
174174 function : RuntimeCall :: Ethereum ( call. clone ( ) ) ,
175175 } ;
@@ -196,7 +196,7 @@ fn transaction_with_to_low_nonce_should_not_work() {
196196 transaction : signed2,
197197 } ;
198198 let source2 = call2. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
199- let extrinsic2 = CheckedExtrinsic :: < u64 , _ , SignedExtra , _ > {
199+ let extrinsic2 = CheckedExtrinsic :: < u64 , _ , TxExtension , _ > {
200200 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
201201 function : RuntimeCall :: Ethereum ( call2. clone ( ) ) ,
202202 } ;
@@ -224,7 +224,7 @@ fn transaction_with_to_hight_nonce_should_fail_in_block() {
224224 transaction : signed,
225225 } ;
226226 let source = call. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
227- let extrinsic = CheckedExtrinsic :: < _ , _ , SignedExtra , _ > {
227+ let extrinsic = CheckedExtrinsic :: < _ , _ , TxExtension , _ > {
228228 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
229229 function : RuntimeCall :: Ethereum ( call) ,
230230 } ;
@@ -247,7 +247,7 @@ fn transaction_with_invalid_chain_id_should_fail_in_block() {
247247
248248 let call = crate :: Call :: < Test > :: transact { transaction } ;
249249 let source = call. check_self_contained ( ) . unwrap ( ) . unwrap ( ) ;
250- let extrinsic = CheckedExtrinsic :: < _ , _ , SignedExtra , _ > {
250+ let extrinsic = CheckedExtrinsic :: < _ , _ , TxExtension , _ > {
251251 format : fp_self_contained:: CheckedFormat :: SelfContained ( source) ,
252252 function : RuntimeCall :: Ethereum ( call) ,
253253 } ;
0 commit comments