From b685314338cf713740523b4baa6ffef07b4114ab Mon Sep 17 00:00:00 2001 From: Andrey Falaleev Date: Tue, 3 Dec 2024 21:03:13 +0000 Subject: [PATCH] skip-tx-from-data: don't check tx in holder --- .../instruction/scheduled_transaction_skip_from_instruction.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/evm_loader/program/src/instruction/scheduled_transaction_skip_from_instruction.rs b/evm_loader/program/src/instruction/scheduled_transaction_skip_from_instruction.rs index ea6b9c04c..9e782fc2c 100644 --- a/evm_loader/program/src/instruction/scheduled_transaction_skip_from_instruction.rs +++ b/evm_loader/program/src/instruction/scheduled_transaction_skip_from_instruction.rs @@ -24,7 +24,6 @@ pub fn process<'a>( let trx = Transaction::scheduled_from_rlp(message)?; let _ = validate_scheduled_tx(&trx, tree_index)?; - holder.validate_transaction(&trx)?; transaction_tree.skip_transaction(&trx)?;