BitcoinMachine
TERM_DEF // UPGRADES_BIPS / BIP_30_DUPLICATE_TX_PREVENTION
BIP 30 (DUPLICATE
TX PREVENTION)
BIP 30 (Duplicate Tx Prevention). Rule preventing two transactions with the same TXID in the utxo-set/">UTXO set.

This page sits in the Upgrades & BIPs section — The proposal process and the major upgrades that shaped Bitcoin. Read on for what it is, why it exists, how it works under the hood, and what to watch out for.
BIP 30 (Duplicate Tx Prevention) — at a glance
UPGRADES
BIP 30 — "Duplicate Tx Prevention" is a proposal in the Script family, first published in 2012 with status final (fork/">soft fork). Rule preventing two transactions with the same TXID in the UTXO set. Its technical mechanism: reject blocks containing a duplicate of an unspent coinbase tx. silently enforced by every node/">full node
Why it exists
DESIGN
BIP 30 (Duplicate Tx Prevention) exists to solve a specific problem: prevent duplicate txid in two blocks, which had caused historical coinbase reorg bugs. Without a written, numbered spec, every wallet and node implementer would interpret the requirement differently — and Bitcoin's value depends on every implementation agreeing exactly. BIP-30 is the single source of truth for this concern, so any new client built today can match the behaviour of every client built since 2012.
Mechanism
HOW IT WORKS
Mechanically, BIP-30 reject blocks containing a duplicate of an unspent coinbase tx. Because this is a soft fork, old software accepts new behaviour without modification — but new behaviour is rejected if old software produces it. Adoption today: silently enforced by every full node.
1. Author drafts BIP-30 against the BIP-2 template — abstract, motivation, specification, rationale. 2. The text + a reference implementation are posted on the bitcoin-dev list and as a PR to bitcoin/bips. 3. Reviewers tear it apart: ambiguities, security concerns, edge cases, interaction with prior BIPs. 4. Once stable, the BIP editor merges it; it gets a number (BIP-30) and the status "draft" or "proposed". 5. Implementations land in Bitcoin Core / wallets / other clients. For consensus changes: activation parameters chosen. 6. After deployment + adoption, BIP-30 is promoted to "final"; deprecated proposals get "replaced" or "withdrawn".
BIP-30 — quick reference card
EXAMPLE
BIP number : 30 Title : Duplicate Tx Prevention Area : Script First published: 2012 Status : final Fork class : soft Motivation : prevent duplicate txid in two blocks, which had caused historical coinbase reorg bugs. Mechanism : reject blocks containing a duplicate of an unspent coinbase tx. Where it shows up : silently enforced by every full node. Read the spec : https://github.com/bitcoin/bips/blob/master/bip-0030.mediawiki
OPT-IN
No authority can force a BIP on anyone. Adoption depends entirely on whether the change is genuinely useful.
NUMBERED
Stable numeric reference — BIP-30 means the same thing across every wallet, miner, and node that has read this spec.
BIP-30 is a soft fork — it changes (or proposes to change) the rules every full node enforces.
DEPLOYED
Implementations of BIP-30 are in production. The behaviour is observable on mainnet today.
Things that catch people out
PITFALLS
  • BIP-30 is a soft fork — old clients accept new behaviour but don't enforce it. Validate against an upgraded node to be sure the rule is being checked.
  • Don't confuse "draft" / "proposed" / "final" status — read the BIP header before relying on it in production.
  • The BIP number is just an editorial counter — it doesn't imply correctness or stability. Always cross-reference with the latest bitcoin/bips repo.

TERMINOLOGY
BIP 30 (Duplicate Tx Prevention)
Rule preventing two transactions with the same TXID in the UTXO set.
Segregated Witness (SegWit, BIP 141)
The 2017 upgrade separating witness-data/">witness data, fixing tx malleability, and introducing weight units.
Taproot (BIP 341)
The 2021 upgrade introducing key-aggregable schnorr-signatures/">Schnorr signatures and Merkleized script trees.
Tapscript (BIP 342)
Script-language updates accompanying Taproot — new opcodes, removed limits.
Schnorr (BIP 340)
The Schnorr signature spec adopted by Taproot.
BIP Process
The community workflow for proposing, discussing, and tracking changes to Bitcoin.
Soft Fork Activation
The mechanism (versionbits, MASF, UASF, Speedy Trial) by which soft forks turn on.
MASF (Miner-Activated Soft Fork)
Activation triggered by miner signaling in block versions.