@@ -283,30 +283,6 @@ def make_noniterative_call_transaction(self, length_before: int = 0) -> Transact
283283 return trx
284284
285285
286- def make_continue_transaction (self , steps , index = None ) -> Transaction :
287- data = bytearray .fromhex ("14" ) + self .collateral_pool_index_buf + steps .to_bytes (8 , byteorder = "little" )
288- if index :
289- data = data + index .to_bytes (8 , byteorder = "little" )
290-
291- return Transaction ().add (TransactionInstruction (
292- program_id = EVM_LOADER_ID ,
293- data = data ,
294- keys = [
295- AccountMeta (pubkey = self .storage , is_signer = False , is_writable = True ),
296-
297- AccountMeta (pubkey = self .operator_account , is_signer = True , is_writable = True ),
298- AccountMeta (pubkey = self .collateral_pool_address , is_signer = False , is_writable = True ),
299- AccountMeta (pubkey = self .operator_neon_address , is_signer = False , is_writable = True ),
300- AccountMeta (pubkey = self .caller_token , is_signer = False , is_writable = True ),
301- AccountMeta (pubkey = SYS_PROGRAM_ID , is_signer = False , is_writable = False ),
302-
303- ] + self .eth_accounts + [
304-
305- AccountMeta (pubkey = SYSVAR_INSTRUCTION_PUBKEY , is_signer = False , is_writable = False ),
306- ] + obligatory_accounts
307- ))
308-
309-
310286 def make_cancel_transaction (self ) -> Transaction :
311287 return Transaction ().add (TransactionInstruction (
312288 program_id = EVM_LOADER_ID ,
0 commit comments