We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 509d1dc commit 87f2996Copy full SHA for 87f2996
zebrad/src/components/mempool/storage.rs
@@ -280,11 +280,6 @@ impl Storage {
280
281
if !spent_outputs.is_empty() {
282
// Validate that spent_outputs aligns with transparent inputs.
283
- // TODO: `spent_outputs` may not align with `tx.inputs()` when a transaction
284
- // spends both chain and mempool UTXOs (mempool outputs are appended last by
285
- // `spent_utxos()`), causing `are_inputs_standard` and `p2sh_sigop_count`
286
- // to pair the wrong input with the wrong spent output.
287
- // https://github.com/ZcashFoundation/zebra/issues/10346
288
if transaction.inputs().len() != spent_outputs.len() {
289
tracing::warn!(
290
inputs = transaction.inputs().len(),
0 commit comments