aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-01-18 10:35:40 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-01-18 10:35:56 +0100
commitb0cb0556737b8022c0536272f2a5b4cb165ac676 (patch)
tree38e992cfbebf3d3f5e723389bd7089cd71ba7080 /doc
parent8b7a0f88cb917a65ef1e482ad22f5836de0c98fa (diff)
parent5cacb8f31929b8bbbb2a89dea8f59b8cca34a7d9 (diff)
downloadbitcoin-b0cb0556737b8022c0536272f2a5b4cb165ac676.tar.xz
Merge pull request #7347
5cacb8f Add comment about mining changes and more about priority (Alex Morcos)
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes.md20
1 files changed, 16 insertions, 4 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index bd72eb2470..69324b445b 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -154,8 +154,8 @@ the OP_RETURN. The limit on OP_RETURN output size is now applied to the entire
serialized scriptPubKey, 83 bytes by default. (the previous 80 byte default plus
three bytes overhead)
-Relay: Priority transactions
-----------------------------
+Relay and Mining: Priority transactions
+---------------------------------------
Transactions that do not pay the minimum relay fee, are called "free
transactions" or priority transactions. Previous versions of Bitcoin
@@ -166,8 +166,11 @@ priority space).
Priority code is scheduled for removal in Bitcoin Core 0.13. In
Bitcoin Core 0.12, the default block priority size has been set to `0`
-and priority transactions are not accepted to the mempool if mempool
-limiting has triggered a higher effective minimum relay fee.
+and the priority calculation has been simplified to only include the
+coin age of inputs that were in the blockchain at the time the transaction
+was accepted into the mempool. In addition priority transactions are not
+accepted to the mempool if mempool limiting has triggered a higher effective
+minimum relay fee.
Automatically use Tor hidden services
-------------------------------------
@@ -359,6 +362,15 @@ caching. A sample config for apache2 could look like:
</VirtualHost>
+Mining Code Changes
+-------------------
+
+The mining code in 0.12 has been optimized to be significantly faster and use less
+memory. As part of these changes, consensus critical calculations are cached on a
+transaction's acceptance into the mempool and the mining code now relies on the
+consistency of the mempool to assemble blocks. However all blocks are still tested
+for validity after assembly.
+
0.12.0 Change log
=================