Difference between revisions of "Confirmation"

From Bitcoin Wiki
Jump to: navigation, search
(changed heading type to be larger)
(rephrased)
Line 21: Line 21:
 
Each additional confirmation is a new [[block]] being found and added to the end of the [[blockchain]].
 
Each additional confirmation is a new [[block]] being found and added to the end of the [[blockchain]].
  
Miners create blocks by solving the [[proof of work]] for their proposed block. The block interval has an average of 10 minutes but not every block interval is exactly 10 minutes. In statistics it's called a [https://en.wikipedia.org/wiki/Poisson_point_process poisson process], where random events happen with the same probability in each time interval. Another way of expressing this is that the mining process has no memory, so at every second a block has the same chance of being found. Poisson processes are well-understood but can be unintuative.
+
Miners create blocks by solving the [[proof of work]] for their proposed block. The block interval has an average of 10 minutes but not every block interval is exactly 10 minutes. It follows a distribution known in statistics as a [https://en.wikipedia.org/wiki/Poisson_point_process poisson distribution], where random events happen with the same probability in each time interval. Another way of expressing this is that the mining process has no memory, so at every second a block has the same chance of being found. Poisson processes are well-understood but can be unintuative.
  
 
[[File:Block-interval.png|600px|center|alt text]]
 
[[File:Block-interval.png|600px|center|alt text]]

Revision as of 16:19, 21 May 2016

After a transaction is broadcast to the Bitcoin network, it may be included in a block that is published to the network. When that happens it is said that the transaction has been mined at a depth of 1 block. With each subsequent block that is found, the number of blocks deep is increased by one. To be secure against double spending, a transaction should not be considered as confirmed until it is a certain number of blocks deep.

The classic bitcoin client will show a transaction as "n/unconfirmed" until the transaction is 6 blocks deep. Merchants and exchanges who accept bitcoins as payment can and should set their own threshold as to how many blocks are required until funds are considered confirmed. When potential loss due to double spending as nominal, as with very inexpensive or non-fungible items, people may choose not to wait for a transaction to be confirmed, and complete the exchange as soon as it is seen on the network. Most exchanges and other merchants who bear the risk from double spending require 6 or more blocks.

There is nothing special about the default, often-cited figure of 6 blocks. It was chosen based on the assumption that an attacker is unlikely to amass more than 10% of the hashrate, and that a negligible risk of less than 0.1% is acceptable. Both these figures are arbitrary, however; 6 blocks are overkill for casual attackers, and at the same time powerless against more dedicated attackers with much more than 10% hashrate.[1]

Coins generated aren't considered valid by the Bitcoin protocol for 100 blocks. It is advisable to wait some additional time for a better chance that the transaction will be propogated by all nodes. Some older bitcoin clients won't show generated coins as confirmed until they are 120 blocks deep.

Confirmation Times

Each additional confirmation is a new block being found and added to the end of the blockchain.

Miners create blocks by solving the proof of work for their proposed block. The block interval has an average of 10 minutes but not every block interval is exactly 10 minutes. It follows a distribution known in statistics as a poisson distribution, where random events happen with the same probability in each time interval. Another way of expressing this is that the mining process has no memory, so at every second a block has the same chance of being found. Poisson processes are well-understood but can be unintuative.

alt text

There are lots of block intervals with a time less than 10 minutes but then a few block intervals much longer which bump up the average to 10 minutes. So the bitcoin network can get unlucky and a block won't be found for a whole hour.

alt text

In a 10 minute interval, the probability of a block being found is about 63% (or 1 - e^(-1)). So approximately two-thirds of the time a block will be found in 10 minutes or less. In 30 minutes a block has a 95% chance of being found, which rises to 99.7% if the time interval is 60 minutes.

See Also

References