@@ -261,7 +261,7 @@ func TestExecutionServiceServerV1Alpha2_ExecuteOptimisticBlock(t *testing.T) {
261
261
// create the txs to send
262
262
// create 5 txs
263
263
txs := []* types.Transaction {}
264
- marshalledTxs := []* sequencerblockv1alpha1 .RollupData {}
264
+ marshalledTxs := []* sequencerblockv1 .RollupData {}
265
265
for i := 0 ; i < 5 ; i ++ {
266
266
unsignedTx := types .NewTransaction (uint64 (i ), testToAddress , big .NewInt (1 ), params .TxGas , big .NewInt (params .InitialBaseFee * 2 ), nil )
267
267
tx , err := types .SignTx (unsignedTx , types .LatestSigner (ethservice .BlockChain ().Config ()), testKey )
@@ -270,8 +270,8 @@ func TestExecutionServiceServerV1Alpha2_ExecuteOptimisticBlock(t *testing.T) {
270
270
271
271
marshalledTx , err := tx .MarshalBinary ()
272
272
require .Nil (t , err , "Failed to marshal tx" )
273
- marshalledTxs = append (marshalledTxs , & sequencerblockv1alpha1 .RollupData {
274
- Value : & sequencerblockv1alpha1 .RollupData_SequencedData {SequencedData : marshalledTx },
273
+ marshalledTxs = append (marshalledTxs , & sequencerblockv1 .RollupData {
274
+ Value : & sequencerblockv1 .RollupData_SequencedData {SequencedData : marshalledTx },
275
275
})
276
276
}
277
277
@@ -287,7 +287,7 @@ func TestExecutionServiceServerV1Alpha2_ExecuteOptimisticBlock(t *testing.T) {
287
287
288
288
chainDestinationAddress := crypto .PubkeyToAddress (chainDestinationAddressPrivKey .PublicKey )
289
289
290
- depositTx := & sequencerblockv1alpha1 .RollupData {Value : & sequencerblockv1alpha1 .RollupData_Deposit {Deposit : & sequencerblockv1alpha1 .Deposit {
290
+ depositTx := & sequencerblockv1 .RollupData {Value : & sequencerblockv1 .RollupData_Deposit {Deposit : & sequencerblockv1 .Deposit {
291
291
BridgeAddress : & primitivev1.Address {
292
292
Bech32M : bridgeAddress ,
293
293
},
0 commit comments