aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-01-10 16:18:38 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-01-13 09:14:36 +0100
commitfa0a391b35eacb01678eedbf489a457da90435d4 (patch)
tree8516cf35db5d3d3d3d5fdd49dbba2523b2285607
parentfa4ba40d8cc4c496a6a1d11803d58076034d5ce5 (diff)
downloadbitcoin-fa0a391b35eacb01678eedbf489a457da90435d4.tar.xz
Add Replace-by-fee to release-notes
-rw-r--r--doc/release-notes.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index 953258f41d..65150808a6 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -169,6 +169,17 @@ a connection to Tor can be made. It can be configured with the `-listenonion`,
`-torcontrol` and `-torpassword` settings. To show verbose debugging
information, pass `-debug=tor`.
+Replace-by-fee transactions
+---------------------------
+
+It is now possible to replace transactions in the transaction memory pool of
+Bitcoin Core 0.12 nodes. Bitcoin Core will only replace transactions which
+have any of their inputs' `nSequence` number set to less than `0xffffffff - 1`.
+Moreover, a replacement transaction may only be accepted when it pays
+sufficient fee, as described in [BIP 125]
+(https://github.com/bitcoin/bips/blob/master/bip-0125.mediawiki).
+
+
Reduce upload traffic
---------------------
@@ -229,7 +240,7 @@ relay fee.
Bitcoin Core 0.12 will have a strict maximum size on the mempool. The
default value is 300 MB and can be configured with the `-maxmempool`
parameter. Whenever a transaction would cause the mempool to exceed
-it's maximum size, the transaction with the lowest feerate will be
+its maximum size, the transaction with the lowest feerate will be
evicted and the node's minimum relay fee will be increased to match
this feerate. The initial minimum relay fee is set to 1000 satoshis
per kB.