Skip to content

Commit 3e02947

Browse files
committed
do not mark invalid
1 parent 557066c commit 3e02947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/op-rbuilder/src/payload_builder_vanilla.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ where
863863
best_txs.mark_invalid(tx.signer(), tx.nonce());
864864
if !is_recoverable {
865865
// For some subset of errors we remove transaction from txpool
866-
info.invalid_tx_hashes.insert(*tx.tx_hash());
866+
// info.invalid_tx_hashes.insert(*tx.tx_hash());
867867
}
868868
continue;
869869
}
@@ -884,7 +884,7 @@ where
884884
num_txs_simulated_fail += 1;
885885
trace!(target: "payload_builder", ?tx, "skipping reverted transaction");
886886
best_txs.mark_invalid(tx.signer(), tx.nonce());
887-
info.invalid_tx_hashes.insert(*tx.tx_hash());
887+
// info.invalid_tx_hashes.insert(*tx.tx_hash());
888888
}
889889
},
890890
) {

0 commit comments

Comments
 (0)