Version 0.3.12 is now available.
Features:
* json-rpc errors return a more standard error object. (thanks to Gavin Andresen)
* json-rpc command line returns exit codes.
* json-rpc “backupwallet” command.
* Recovers and continues if an exception is caused by a message you received. Other nodes shouldn’t be able to cause an exception, and it hasn’t happened before, but if a way is found to cause an exception, this would keep it from being used to stop network nodes.
If you have json-rpc code that checks the contents of the error string, you need to change it to expect error objects of the form {“code”:,”message”:}, which is the standard. See this thread:
http://www.bitcoin.org/smf/index.php?topic=969.0
Download:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.12/
Version 0.3.13 is now available. You should upgrade to prevent potential problems with 0/unconfirmed transactions. Note: 0.3.13 prevents problems if you haven’t already spent a 0/unconfirmed transaction, but if that already happened, you need 0.3.13.2.
Changes:
* Don’t count or spend payments until they have 1 confirmation.
* Internal version number from 312 to 31300.
* Only accept transactions sent by IP address if -allowreceivebyip is specified.
* Dropped DB_PRIVATE Berkeley DB flag.
* Fix problem sending the last cent with sub-cent fractional change.
* Auto-detect whether to use 128-bit 4-way SSE2 on Linux.
Gavin Andresen:
* Option -rpcallowip= to accept json-rpc connections from another machine.
* Clean shutdown on SIGTERM on Linux.
Download:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.13/
(Thanks Laszlo for the Mac OSX build!)
Note:
The SSE2 auto-detect in the Linux 64-bit version doesn’t work with AMD in 64-bit mode. Please try this instead and let me know if it gets it right:
http://www.bitcoin.org/download/bitcoin-0.3.13.1-specialbuild-linux64.tar.gz
You can still control the SSE2 use manually with -4way and -4way=0.
Version 0.3.13.2 (SVN rev 161) has improvements for the case where you already had 0/unconfirmed transactions that you might have already spent. Here’s a Windows build of it:
http://www.bitcoin.org/download/bitcoin-0.3.13.2-win32-setup.exe
Version 0.3.14 is now available
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.14/
Changes:
* Key pool feature for safer wallet backup
Gavin Andresen:
* TEST network mode with switch -testnet
* Option to use SSL for JSON-RPC connections on unix/osx
* validateaddress RPC command
eurekafag:
* Russian translation
Never released.
Version 0.3.17 is now available.
Changes:
* new getwork, thanks m0mchil
* added transaction fee setting in UI options menu
* free transaction limits
* sendtoaddress returns transaction id instead of “sent”
* getaccountaddress
The UI transaction fee setting was easy since it was still there from 0.1.5 and all I had to do was re-enable it.
The accounts-based commands: move, sendfrom and getbalance will be in the next release. We still have some more changes to make first.
Changes:
* Fixed a wallet.dat compatibility problem if you downgraded from 0.3.17 and then upgraded again
* IsStandard() check to only include known transaction types in blocks
* Jgarzik’s optimisation to speed up the initial block download a little
The main addition in this release is the Accounts-Based JSON-RPC commands that Gavin’s been working on (more details at http://www.bitcoin.org/smf/index.php?topic=1886.0).
* getaccountaddress
* sendfrom
* move
* getbalance
* listtransactions
There’s more work to do on DoS, but I’m doing a quick build of what I have so far in case it’s needed, before venturing into more complex ideas. The build for this is version 0.3.19.
I’m leaving the -limitfreerelay part as a switch for now and it’s there if you need it.
Never released or release notes were lost.
The maxsendbuffer bug (0.3.20.1 clients not being able to download the block chain from other 0.3.20.1 clients) was only going to get
worse as people upgraded, so I cherry-picked the bug fix and created a minor release yesterday.
The Amazon Machine Images I used to do the builds are available:
ami-38a05251 Bitcoin-v0.3.20.2 Mingw (Windows; Administrator password ‘bitcoin development’)
ami-30a05259 Bitcoin_0.3.20.2 Linux32
ami-8abc4ee3 Bitcoin_0.3.20.2 Linux64
(mac build will be done soon)
If you have already downloaded version 0.3.20.1, please either add this to your bitcoin.conf file:
maxsendbuffer=10000
maxreceivebuffer=10000
… or download the new version.
Please checkout the git integration branch from:
https://github.com/bitcoin/bitcoin
… and help test. The new features that need testing are:
Bug fixes that also need testing:
This needs more testing on Windows! Please drop me a quick private message, email, or IRC message if you are able to do some testing. If you find bugs, please open an issue at:
https://github.com/bitcoin/bitcoin/issues
Binaries for Bitcoin version 0.3.21 are available at:
https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.21/
Changes and new features from the 0.3.20 release include:
Universal Plug and Play support. Enable automatic opening of a port for incoming connections by running bitcoin or bitcoind with the - -upnp=1 command line switch or using the Options dialog box.
Support for full-precision bitcoin amounts. You can now send, and bitcoin will display, bitcoin amounts smaller than 0.01. However, sending fewer than 0.01 bitcoins still requires a 0.01 bitcoin fee (so you can send 1.0001 bitcoins without a fee, but you will be asked to pay a fee if you try to send 0.0001).
A new method of finding bitcoin nodes to connect with, via DNS A records. Use the -dnsseed option to enable.
For developers, changes to bitcoin’s remote-procedure-call API:
New rpc command “sendmany” to send bitcoins to more than one address in a single transaction.
Several bug fixes, including a serious intermittent bug that would sometimes cause bitcoind to stop accepting rpc requests.
-logtimestamps option, to add a timestamp to each line in debug.log.
Immature blocks (newly generated, under 120 confirmations) are now shown in listtransactions.
Download URL: https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.22/
This is largely a bugfix and TX fee schedule release. We also hope to make 0.3.23 a quick release, to fix problems that the network has seen due to explosive growth in the past week.
Notable changes:
* Client will accept and relay TX’s with 0.0005 BTC fee schedule (users still pay 0.01 BTC per kb, until next version)
* Non-standard transactions accepted on testnet
* Source code tree reorganized (prep for autotools build)
* Remove “Generate Coins” option from GUI, and remove 4way SSE miner. Internal reference CPU miner remains available, but users are directed to external miners for best hash production.
* IRC is overflowing. Client now bootstraps to channels #bitcoin00 - #bitcoin99
* DNS names now may be used with -addnode, -connect (requires -dns to enable)
RPC changes:
* ‘listtransactions’ adds ‘from’ param, for range queries
* ‘move’ may take account balances negative
* ‘settxfee’ added, to manually set TX fee
Win32, Linux, MacOSX and source releases for bitcoin v0.3.23 have been uploaded to
https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.23/
This is another quick bugfix release, trying to deal with the influx of new bitcoin users.
Main items of note:
Bitcoin v0.3.24 is now available for download at
https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.24/
This is another bug fix release. We had hoped to have wallet encryption ready for release, but more urgent fixes for existing clients were needed – most notably block download problems were getting severe. Wallet encryption is ready for testing at https://github.com/bitcoin/bitcoin/pull/352 for the git-savvy, and hopefully will follow shortly in the next release, v0.4.
Notable fixes in v0.3.24, and the main reasons for this release:
F1) Block downloads were failing or taking unreasonable amounts of time to complete, because the increased size of the block chain was bumping up against some earlier buffer-size DoS limits.
F2) Fix crash caused by loss/lack of network connection.
Notable changes in v0.3.24:
C1) DNS seeding enabled by default.
C2) UPNP enabled by default in the GUI client. The percentage of bitcoin clients that accept incoming connections is quite small, and that is a problem. This should help. bitcoind, and unofficial builds, are unchanged (though we encourage use of “-upnp” to help the network!)
C3) Initial unit testing framework. Bitcoin sorely needs automated tests, and this is a beginning. Contributions welcome.
C4) Internal wallet code cleanup. While invisible to an end user, this change provides the basis for v0.4’s wallet encryption.
Bitcoin version 0.4.0 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.4.0/
The main feature in this release is wallet private key encryption;
you can set a passphrase that must be entered before sending coins.
See below for more information; if you decide to encrypt your wallet,
WRITE DOWN YOUR PASSPHRASE AND PUT IT IN A SECURE LOCATION. If you
forget or lose your wallet passphrase, you lose your bitcoins.
Previous versions of bitcoin are unable to read encrypted wallets,
and will crash on startup if the wallet is encrypted.
Also note: bitcoin version 0.4 uses a newer version of Berkeley DB
(bdb version 4.8) than previous versions (bdb 4.7). If you upgrade
to version 0.4 and then revert back to an earlier version of bitcoin
the it may be unable to start because bdb 4.7 cannot read bdb 4.8
“log” files.
Notable bug fixes from version 0.3.24:
Fix several bitcoin-becomes-unresponsive bugs due to multithreading
deadlocks.
Optimize database writes for large (lots of inputs) transactions
(fixes a potential denial-of-service attack)
Wallet Encryption
Bitcoin supports native wallet encryption so that people who steal your
wallet file don’t automatically get access to all of your Bitcoins.
In order to enable this feature, choose “Encrypt Wallet” from the
Options menu. You will be prompted to enter a passphrase, which
will be used as the key to encrypt your wallet and will be needed
every time you wish to send Bitcoins. If you lose this passphrase,
you will lose access to spend all of the bitcoins in your wallet,
no one, not even the Bitcoin developers can recover your Bitcoins.
This means you are responsible for your own security, store your
passphrase in a secure location and do not forget it.
Remember that the encryption built into bitcoin only encrypts the
actual keys which are required to send your bitcoins, not the full
wallet. This means that someone who steals your wallet file will
be able to see all the addresses which belong to you, as well as the
relevant transactions, you are only protected from someone spending
your coins.
It is recommended that you backup your wallet file before you
encrypt your wallet. To do this, close the Bitcoin client and
copy the wallet.dat file from ~/.bitcoin/ on Linux, /Users/(user
name)/Application Support/Bitcoin/ on Mac OSX, and %APPDATA%/Bitcoin/
on Windows (that is /Users/(user name)/AppData/Roaming/Bitcoin on
Windows Vista and 7 and /Documents and Settings/(user name)/Application
Data/Bitcoin on Windows XP). Once you have copied that file to a
safe location, reopen the Bitcoin client and Encrypt your wallet.
If everything goes fine, delete the backup and enjoy your encrypted
wallet. Note that once you encrypt your wallet, you will never be
able to go back to a version of the Bitcoin client older than 0.4.
Keep in mind that you are always responsible for your own security.
All it takes is a slightly more advanced wallet-stealing trojan which
installs a keylogger to steal your wallet passphrase as you enter it
in addition to your wallet file and you have lost all your Bitcoins.
Wallet encryption cannot keep you safe if you do not practice
good security, such as running up-to-date antivirus software, only
entering your wallet passphrase in the Bitcoin client and using the
same passphrase only as your wallet passphrase.
See the doc/README file in the bitcoin source for technical details
of wallet encryption.
Bitcoin version 0.4.1 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.4.1/
This is a bugfix only release based on 0.4.0.
Please report bugs by replying to this forum thread.
MAJOR BUG FIX (CVE-2011-4447)
The wallet encryption feature introduced in Bitcoin version 0.4.0 did not sufficiently secure the private keys. An attacker who
managed to get a copy of your encrypted wallet.dat file might be able to recover some or all of the unencrypted keys and steal the
associated coins.
If you have a previously encrypted wallet.dat, the first time you run wxbitcoin or bitcoind the wallet will be rewritten, Bitcoin will
shut down, and you will be prompted to restart it to run with the new, properly encrypted file.
If you had a previously encrypted wallet.dat that might have been copied or stolen (for example, you backed it up to a public
location) you should send all of your bitcoins to yourself using a new bitcoin address and stop using any previously generated addresses.
Wallets encrypted with this version of Bitcoin are written properly.
Technical note: the encrypted wallet’s ‘keypool’ will be regenerated the first time you request a new bitcoin address; to be certain that the
new private keys are properly backed up you should:
Run Bitcoin and let it rewrite the wallet.dat file
Run it again, then ask it for a new bitcoin address.
wxBitcoin: new address visible on main window
bitcoind: run the ‘walletpassphrase’ RPC command to unlock the wallet, then run the ‘getnewaddress’ RPC command.
If your encrypted wallet.dat may have been copied or stolen, send all of your bitcoins to the new bitcoin address.
Shut down Bitcoin, then backup the wallet.dat file.
IMPORTANT: be sure to request a new bitcoin address before backing up, so that the ‘keypool’ is regenerated and backed up.
“Security in depth” is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your bitcoins.
Thanks to Alan Reiner (etotheipi) for finding and reporting this bug.
Never released or release notes were lost.
bitcoind version 0.4.3 is now available for download at:
http://luke.dashjr.org/programs/bitcoin/files/bitcoind-0.4.3/ (until Gavin uploads to SourceForge)
This is a bugfix-only release based on 0.4.0.
Please note that the wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr.
Please report bugs for the daemon only using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Stable source code is hosted at Gitorious:
http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.4.3#.tar.gz
BUG FIXES
Cease locking memory used by non-sensitive information (this caused a huge performance hit on some platforms, especially noticable during initial blockchain download).
Fixed some address-handling deadlocks (client freezes).
No longer accept inbound connections over the internet when Bitcoin is being used with Tor (identity leak).
Use the correct base transaction fee of 0.0005 BTC for accepting transactions into mined blocks (since 0.4.0, it was incorrectly accepting 0.0001 BTC which was only meant to be relayed).
Add new DNS seeds (maintained by Pieter Wuille and Luke Dashjr).
Bitcoin version 0.4.4 is now available for download at:
http://luke.dashjr.org/programs/bitcoin/files/bitcoind-0.4.4/
This is a bugfix-only release based on 0.4.0.
Please note that the wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr.
Please report bugs for the daemon only using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Stable source code is hosted at Gitorious:
http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.4.4#.tar.gz
BUG FIXES
Limit the number of orphan transactions stored in memory, to prevent a potential denial-of-service attack by flooding orphan transactions. Also never store invalid transactions at all.
Fix possible buffer overflow on systems with very long application data paths. This is not exploitable.
Resolved multiple bugs preventing long-term unlocking of encrypted wallets (issue #922).
Only send local IP in “version” messages if it is globally routable (ie, not private), and try to get such an IP from UPnP if applicable.
Reannounce UPnP port forwards every 20 minutes, to workaround routers expiring old entries, and allow the -upnp option to override any stored setting.
Various memory leaks and potential null pointer deferences have been
fixed.
Several shutdown issues have been fixed.
Check that keys stored in the wallet are valid at startup, and if not,
report corruption.
Various build fixes.
If no password is specified to bitcoind, recommend a secure password.
Update hard-coded fallback seed nodes, choosing recent ones with long uptime and versions at least 0.4.0.
Add checkpoint at block 168,000.
Never released or release notes were lost.
bitcoind version 0.4.6 is now available for download at:
Windows: installer | zip (sig)
Source: tar.gz
bitcoind and Bitcoin-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1.
These are bugfix-only releases.
Please report bugs by replying to this forum thread. Note that the 0.4.x wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr.
BUG FIXES
Version 0.6.0 allowed importing invalid “private keys”, which would be unspendable; 0.6.0.7 will now verify the private key is valid, and refuse to import an invalid one
Verify status of encrypt/decrypt calls to detect failed padding
Check blocks for duplicate transactions earlier. Fixes #1167
Upgrade Windows builds to OpenSSL 1.0.1b
Set label when selecting an address that already has a label. Fixes #1080 (Bitcoin-Qt)
JSON-RPC listtransactions’s from/count handling is now fixed
Optimize and fix multithreaded access, when checking whether we already know about transactions
Fix potential networking deadlock
Proper support for Growl 1.3 notifications
Display an error, rather than crashing, if encoding a QR Code failed (0.6.0.7)
Don’t erroneously set “Display addresses” for users who haven’t explicitly enabled it (Bitcoin-Qt)
Some non-ASCII input in JSON-RPC expecting hexadecimal may have been misinterpreted rather than rejected
Missing error condition checking added
Do not show green tick unless all known blocks are downloaded. Fixes #921 (Bitcoin-Qt)
Increase time ago of last block for “up to date” status from 30 to 90 minutes
Show a message box when runaway exception happens (Bitcoin-Qt)
Use a messagebox to display the error when -server is provided without providing a rpc password
Show error message instead of exception crash when unable to bind RPC port (Bitcoin-Qt)
Correct sign message bitcoin address tooltip. Fixes #1050 (Bitcoin-Qt)
Removed “(no label)” from QR Code dialog titlebar if we have no label (0.6.0.7)
Removed an ugly line break in tooltip for mature transactions (0.6.0.7)
Add missing tooltip and key shortcut in settings dialog (part of #1088) (Bitcoin-Qt)
Work around issue in boost::program_options that prevents from compiling in clang
Fixed bugs occurring only on platforms with unsigned characters (such as ARM).
Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (Bitcoin-Qt)
Various trivial internal corrections to types used for counting/size loops and warnings
Bitcoin version 0.5.0 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.0/
The major change for this release is a completely new graphical interface that uses the Qt user interface toolkit.
This release include German, Spanish, Spanish-Castilian, Norwegian and Dutch translations. More translations are welcome; join the project at Transifex if you can help:
https://www.transifex.net/projects/p/bitcoin/
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
For Ubuntu users, there is a new ppa maintained by Matt Corallo which you can add to your system so that it will automatically keep bitcoin up-to-date. Just type “sudo apt-add-repository ppa:bitcoin/bitcoin” in your terminal, then install the bitcoin-qt package.
MAJOR BUG FIX (CVE-2011-4447)
The wallet encryption feature introduced in Bitcoin version 0.4.0 did not sufficiently secure the private keys. An attacker who
managed to get a copy of your encrypted wallet.dat file might be able to recover some or all of the unencrypted keys and steal the
associated coins.
If you have a previously encrypted wallet.dat, the first time you run bitcoin-qt or bitcoind the wallet will be rewritten, Bitcoin will
shut down, and you will be prompted to restart it to run with the new, properly encrypted file.
If you had a previously encrypted wallet.dat that might have been copied or stolen (for example, you backed it up to a public
location) you should send all of your bitcoins to yourself using a new bitcoin address and stop using any previously generated addresses.
Wallets encrypted with this version of Bitcoin are written properly.
Technical note: the encrypted wallet’s ‘keypool’ will be regenerated the first time you request a new bitcoin address; to be certain that the
new private keys are properly backed up you should:
Run Bitcoin and let it rewrite the wallet.dat file
Run it again, then ask it for a new bitcoin address.
Bitcoin-Qt: Address Book, then New Address…
bitcoind: run the ‘walletpassphrase’ RPC command to unlock the wallet, then run the ‘getnewaddress’ RPC command.
If your encrypted wallet.dat may have been copied or stolen, send all of your bitcoins to the new bitcoin address.
Shut down Bitcoin, then backup the wallet.dat file.
IMPORTANT: be sure to request a new bitcoin address before backing up, so that the ‘keypool’ is regenerated and backed up.
“Security in depth” is always a good idea, so choosing a secure location for the backup and/or encrypting the backup before uploading it is recommended. And as in previous releases, if your machine is infected by malware there are several ways an attacker might steal your bitcoins.
Thanks to Alan Reiner (etotheipi) for finding and reporting this bug.
MAJOR GUI CHANGES
“Splash” graphics at startup that show address/wallet/blockchain loading progress.
“Synchronizing with network” progress bar to show block-chain download progress.
Icons at the bottom of the window that show how well connected you are to the network, with tooltips to display details.
Drag and drop support for bitcoin: URIs on web pages.
Export transactions as a .csv file.
Many other GUI improvements, large and small.
RPC CHANGES
getmemorypool : new RPC command, provides everything needed to construct a block with a custom generation transaction and submit a solution
listsinceblock : new RPC command, list transactions since given block
signmessage/verifymessage : new RPC commands to sign a message with one of your private keys or verify that a message signed by the private key associated with a bitcoin address.
GENERAL CHANGES
Faster initial block download.
Bitcoin version 0.5.1 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.1/
This is a bugfix-only release.
This release includes 13 translations, including 5 new translations:
Italian, Hungarian, Ukranian, Portuguese (Brazilian) and Simplified Chinese.
More translations are welcome; join the project at Transifex if you can help:
https://www.transifex.net/projects/p/bitcoin/
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Project source code is hosted at github; we are no longer
distributing .tar.gz files here, you can get them
directly from github:
https://github.com/bitcoin/bitcoin/tarball/v0.5.1 # .tar.gz
https://github.com/bitcoin/bitcoin/zipball/v0.5.1 # .zip
For Ubuntu users, there is a new ppa maintained by Matt Corallo which
you can add to your system so that it will automatically keep
bitcoin up-to-date. Just type
sudo apt-add-repository ppa:bitcoin/bitcoin
in your terminal, then install the bitcoin-qt package.
BUG FIXES
Re-enable SSL support for the JSON-RPC interface (it was unintentionally
disabled for the 0.5.0 release binaries).
The code that finds peers via “dns seeds” no longer stops bitcoin startup
if one of the dns seed machines is down.
Tooltips on the transaction list view were rendering incorrectly (as black boxes
or with a transparent background).
Prevent a denial-of-service attack involving flooding a bitcoin node with
orphan blocks.
The wallet passphrase dialog now warns you if the caps lock key was pressed.
Improved searching in addresses and labels in bitcoin-qt.
Bitcoin version 0.5.2 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.2/
This is a bugfix-only release based on 0.5.1.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Stable source code is hosted at Gitorious:
http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.2#.tar.gz
BUG FIXES
Check all transactions in blocks after the last checkpoint (0.5.0 and 0.5.1 skipped checking ECDSA signatures during initial blockchain download).
Cease locking memory used by non-sensitive information (this caused a huge performance hit on some platforms, especially noticable during initial blockchain download; this was
not a security vulnerability).
Fixed some address-handling deadlocks (client freezes).
No longer accept inbound connections over the internet when Bitcoin is being used with Tor (identity leak).
Re-enable SSL support for the JSON-RPC interface (it was unintentionally disabled for the 0.5.0 and 0.5.1 release Linux binaries).
Use the correct base transaction fee of 0.0005 BTC for accepting transactions into mined blocks (since 0.4.0, it was incorrectly accepting 0.0001 BTC which was only meant to be relayed).
Don’t show “IP” for transactions which are not necessarily IP transactions.
Add new DNS seeds (maintained by Pieter Wuille and Luke Dashjr).
Bitcoin version 0.5.3 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.3/
This is a bugfix-only release based on 0.5.1.
It also includes a few protocol updates.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Stable source code is hosted at Gitorious:
http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.3#.tar.gz
PROTOCOL UPDATES
BIP 30: Introduce a new network rule: “a block is not valid if it contains a transaction whose hash already exists in the block chain, unless all that transaction’s outputs were already spent before said block” beginning on March 15, 2012, 00:00 UTC.
On testnet, allow mining of min-difficulty blocks if 20 minutes have gone by without mining a regular-difficulty block. This is to make testing Bitcoin easier, and will not affect normal mode.
BUG FIXES
Limit the number of orphan transactions stored in memory, to prevent a potential denial-of-service attack by flooding orphan transactions. Also never store invalid transactions at all.
Fix possible buffer overflow on systems with very long application data paths. This is not exploitable.
Resolved multiple bugs preventing long-term unlocking of encrypted wallets
(issue #922).
Only send local IP in “version” messages if it is globally routable (ie, not private), and try to get such an IP from UPnP if applicable.
Reannounce UPnP port forwards every 20 minutes, to workaround routers expiring old entries, and allow the -upnp option to override any stored setting.
Skip splash screen when -min is used, and fix Minimize to Tray function.
Do not blank “label” in Bitcoin-Qt “Send” tab, if the user has already entered something.
Correct various labels and messages.
Various memory leaks and potential null pointer deferences have been fixed.
Handle invalid Bitcoin URIs using “bitcoin://” instead of “bitcoin:”.
Several shutdown issues have been fixed.
Revert to “global progress indication”, as starting from zero every time was considered too confusing for many users.
Check that keys stored in the wallet are valid at startup, and if not, report corruption.
Enable accessible widgets on Windows, so that people with screen readers such as NVDA can make sense of it.
Various build fixes.
If no password is specified to bitcoind, recommend a secure password.
Automatically focus and scroll to new “Send coins” entries in Bitcoin-Qt.
Show a message box for –help on Windows, for Bitcoin-Qt.
Add missing “About Qt” menu option to show built-in Qt About dialog.
Don’t show “-daemon” as an option for Bitcoin-Qt, since it isn’t available.
Update hard-coded fallback seed nodes, choosing recent ones with long uptime and versions at least 0.4.0.
Add checkpoint at block 168,000.
Bitcoin version 0.5.4 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.5.4/
NOTE: 0.5.4rc3 is being renamed to 0.5.4 final with no changes.
This is a bugfix-only release in the 0.5.x series, plus a few protocol updates.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Stable source code is hosted at Gitorious:
http://gitorious.org/bitcoin/bitcoind-stable/archive-tarball/v0.5.4#.tar.gz
PROTOCOL UPDATES
BIP 16: Special-case “pay to script hash” logic to enable minimal validation of new transactions.
Support for validating message signatures produced with compressed public keys.
BUG FIXES
Build with thread-safe MingW libraries for Windows, fixing a dangerous memory corruption scenario when exceptions are thrown.
Fix broken testnet mining.
Stop excess inventory relay during initial block download.
When disconnecting a node, clear the received buffer so that we do not process any already received messages.
Yet another attempt at implementing “minimize to tray” that works on all operating systems.
Fix Bitcoin-Qt notifications under Growl 1.3.
Increase required age of Bitcoin-Qt’s “not up to date” status from 30 to 90 minutes.
Implemented missing verifications that led to crash on entering some wrong passphrases for encrypted wallets.
Fix default filename suffixes in GNOME save dialog.
Make the “Send coins” tab use the configured unit type, even on the first attempt.
Print detailed wallet loading errors to debug.log when it is corrupt.
Allocate exactly the amount of space needed for signing transactions, instead of a fixed 10k buffer.
Workaround for improbable memory access violation.
Check wallet’s minimum version before trying to load it.
Remove wxBitcoin properly when installing Bitcoin-Qt over it. (Windows)
Detail reorganization information better in debug log.
Use a messagebox to display the error when -server is provided without configuring a RPC password.
Testing suite build now honours provided CXXFLAGS.
Removed an extraneous line-break in mature transaction tooltips.
Fix some grammatical errors in translation process documentation.
bitcoind and Bitcoin-Qt version 0.5.5 are now available for download at:
Windows: installer | zip (sig)
Source: tar.gz
bitcoind and Bitcoin-Qt version 0.6.0.7 are also tagged in git, but it is recommended to upgrade to 0.6.1.
These are bugfix-only releases.
Please report bugs by replying to this forum thread. Note that the 0.4.x wxBitcoin GUI client is no longer maintained nor supported. If someone would like to step up to maintain this, they should contact Luke-Jr.
BUG FIXES
Version 0.6.0 allowed importing invalid “private keys”, which would be unspendable; 0.6.0.7 will now verify the private key is valid, and refuse to import an invalid one
Verify status of encrypt/decrypt calls to detect failed padding
Check blocks for duplicate transactions earlier. Fixes #1167
Upgrade Windows builds to OpenSSL 1.0.1b
Set label when selecting an address that already has a label. Fixes #1080 (Bitcoin-Qt)
JSON-RPC listtransactions’s from/count handling is now fixed
Optimize and fix multithreaded access, when checking whether we already know about transactions
Fix potential networking deadlock
Proper support for Growl 1.3 notifications
Display an error, rather than crashing, if encoding a QR Code failed (0.6.0.7)
Don’t erroneously set “Display addresses” for users who haven’t explicitly enabled it (Bitcoin-Qt)
Some non-ASCII input in JSON-RPC expecting hexadecimal may have been misinterpreted rather than rejected
Missing error condition checking added
Do not show green tick unless all known blocks are downloaded. Fixes #921 (Bitcoin-Qt)
Increase time ago of last block for “up to date” status from 30 to 90 minutes
Show a message box when runaway exception happens (Bitcoin-Qt)
Use a messagebox to display the error when -server is provided without providing a rpc password
Show error message instead of exception crash when unable to bind RPC port (Bitcoin-Qt)
Correct sign message bitcoin address tooltip. Fixes #1050 (Bitcoin-Qt)
Removed “(no label)” from QR Code dialog titlebar if we have no label (0.6.0.7)
Removed an ugly line break in tooltip for mature transactions (0.6.0.7)
Add missing tooltip and key shortcut in settings dialog (part of #1088) (Bitcoin-Qt)
Work around issue in boost::program_options that prevents from compiling in clang
Fixed bugs occurring only on platforms with unsigned characters (such as ARM).
Rename make_windows_icon.py to .sh as it is a shell script. Fixes #1099 (Bitcoin-Qt)
Various trivial internal corrections to types used for counting/size loops and warnings
Bitcoin version 0.6.0 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.0/test/
This release includes more than 20 language localizations.
More translations are welcome; join the
project at Transifex to help:
https://www.transifex.net/projects/p/bitcoin/
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Project source code is hosted at github; we are no longer
distributing .tar.gz files here, you can get them
directly from github:
https://github.com/bitcoin/bitcoin/tarball/v0.6.0 # .tar.gz
https://github.com/bitcoin/bitcoin/zipball/v0.6.0 # .zip
For Ubuntu users, there is a ppa maintained by Matt Corallo which
you can add to your system so that it will automatically keep
bitcoin up-to-date. Just type
sudo apt-add-repository ppa:bitcoin/bitcoin
in your terminal, then install the bitcoin-qt package.
KNOWN ISSUES
Shutting down while synchronizing with the network
(downloading the blockchain) can take more than a minute,
because database writes are queued to speed up download
time.
NEW FEATURES SINCE BITCOIN VERSION 0.5
Initial network synchronization should be much faster
(one or two hours on a typical machine instead of ten or more
hours).
Backup Wallet menu option.
Bitcoin-Qt can display and save QR codes for sending
and receiving addresses.
New context menu on addresses to copy/edit/delete them.
New Sign Message dialog that allows you to prove that you
own a bitcoin address by creating a digital
signature.
New wallets created with this version will
use 33-byte ‘compressed’ public keys instead of
65-byte public keys, resulting in smaller
transactions and less traffic on the bitcoin
network. The shorter keys are already supported
by the network but wallet.dat files containing
short keys are not compatible with earlier
versions of Bitcoin-Qt/bitcoind.
New command-line argument -blocknotify=
that will spawn a shell process to run
when a new block is accepted.
New command-line argument -splash=0 to disable
Bitcoin-Qt’s initial splash screen
validateaddress JSON-RPC api command output includes
two new fields for addresses in the wallet:
pubkey : hexadecimal public key
iscompressed : true if pubkey is a short 33-byte key
New JSON-RPC api commands for dumping/importing
private keys from the wallet (dumprivkey, importprivkey).
New JSON-RPC api command for getting information about
blocks (getblock, getblockhash).
New JSON-RPC api command (getmininginfo) for getting
extra information related to mining. The getinfo
JSON-RPC command no longer includes mining-related
information (generate/genproclimit/hashespersec).
NOTABLE CHANGES
BIP30 implemented (security fix for an attack involving
duplicate “coinbase transactions”).
The -nolisten, -noupnp and -nodnsseed command-line
options were renamed to -listen, -upnp and -dnsseed,
with a default value of 1. The old names are still
supported for compatibility (so specifying -nolisten
is automatically interpreted as -listen=0; every
boolean argument can now be specified as either
-foo or -nofoo).
The -noirc command-line options was renamed to
-irc, with a default value of 0. Run -irc=1 to
get the old behavior.
Three fill-up-available-memory denial-of-service
attacks were fixed.
NOT YET IMPLEMENTED FEATURES
Support for clicking on bitcoin: URIs and
opening/launching Bitcoin-Qt is available only on Linux,
and only if you configure your desktop to launch
Bitcoin-Qt. All platforms support dragging and dropping
bitcoin: URIs onto the Bitcoin-Qt window to start
payment.
PRELIMINARY SUPPORT FOR MULTISIGNATURE TRANSACTIONS
This release has preliminary support for multisignature
transactions– transactions that require authorization
from more than one person or device before they
will be accepted by the bitcoin network.
Prior to this release, multisignature transactions
were considered ‘non-standard’ and were ignored;
with this release multisignature transactions are
considered standard and will start to be relayed
and accepted into blocks.
It is expected that future releases of Bitcoin-Qt
will support the creation of multisignature transactions,
once enough of the network has upgraded so relaying
and validating them is robust.
For this release, creation and testing of multisignature
transactions is limited to the bitcoin test network using
the “addmultisigaddress” JSON-RPC api call.
Short multisignature address support is included in this
release, as specified in BIP 13 and BIP 16.
Never released
Bitcoin version 0.6.2 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.2/
This is a bug-fix and code-cleanup release, with no major new features.
Please report bugs using the github issue tracker at:
https://github.com/bitcoin/bitcoin/issues
NOTABLE CHANGES
Much faster shutdowns. However, the blkindex.dat file is no longer
portable to different data directories by default. If you need a
portable blkindex.dat file then run with the new -detachdb=1 option
or the “Detach databases at shutdown” GUI preference.
Fixed https://github.com/bitcoin/bitcoin/issues/1065, a bug that
could cause long-running nodes to crash.
Mac and Windows binaries are compiled against OpenSSL 1.0.1b (Linux
binaries are dynamically linked to the version of OpenSSL on the system).
CHANGE SUMMARY
Use ‘git shortlog –no-merges v0.6.0..’ for a summary of this release.
Source codebase changes:
- Many source code cleanups and warnings fixes. Close to building with -Wall
- Locking overhaul, and several minor locking fixes
- Several source code portability fixes, e.g. FreeBSD
JSON-RPC interface changes:
- addmultisigaddress enabled for mainnet (previously only enabled for testnet)
Network protocol changes:
- protocol version 60001
- added nonce value to “ping” message (BIP 31)
- added new “pong” message (BIP 31)
Backend storage changes:
- Less redundant database flushing, especially during initial block download
- Shutdown improvements (see above)
Qt user interface:
- minor URI handling improvements
- progressbar improvements
- error handling improvements (show message box rather than console exception,
etc.)
- by popular request, make 4th bar of connection icon green
Bitcoin version 0.6.3 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.3/
This is a bug-fix release, with no new features.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
CHANGE SUMMARY
Fixed a serious denial-of-service attack that could cause the
bitcoin process to become unresponsive. Thanks to Sergio Lerner
for finding and responsibly reporting the problem. (CVE-2012-3789)
Optimized the process of checking transaction signatures, to
speed up processing of new block messages and make propagating
blocks across the network faster.
Fixed an obscure bug that could cause the bitcoin process to get
stuck on an invalid block-chain, if the invalid chain was
hundreds of blocks long.
Bitcoin-Qt no longer automatically selects the first address
in the address book (Issue #1384).
Fixed minimize-to-dock behavior of Bitcoin-Qt on the Mac.
Added a block checkpoint at block 185,333 to speed up initial
blockchain download.
Bitcoin version 0.7.0 is now available for download at:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.0/
We recommend that everybody running prior versions of bitcoind/Bitcoin-Qt
upgrade to this release, except for users running Mac OSX 10.5.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Project source code is hosted at github; you can get
source-only tarballs/zipballs directly from there:
https://github.com/bitcoin/bitcoin/tarball/v0.7.0 # .tar.gz
https://github.com/bitcoin/bitcoin/zipball/v0.7.0 # .zip
Ubuntu Linux users can use the “Personal Package Archive” (PPA)
maintained by Matt Corallo to automatically keep
bitcoin up-to-date. Just type
sudo apt-add-repository ppa:bitcoin/bitcoin
sudo apt-get update
in your terminal, then install the bitcoin-qt package:
sudo apt-get install bitcoin-qt
How to Upgrade
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
Code:
/Applications/Bitcoin-Qt
(on Mac) or
Code:
bitcoind/bitcoin-qt
(on Linux).
If you were running on Linux with a version that might have been compiled
with a different version of Berkeley DB (for example, if you were using the
PPA and are switching to the binary release), then run the old version again
with the -detachdb argument and shut it down; if you do not, then the new
version will not be able to read the database files and will exit with an error.
Incompatible Changes
Bitcoin Improvement Proposals implemented
BIP 22 - ‘getblocktemplate’, ‘submitblock’ RPCs
BIP 34 - block version 2, height in coinbase
BIP 35 - ‘mempool’ message, extended ‘getdata’ message behavior
Core bitcoin handling and blockchain database
JSON-RPC API
P2P networking
Qt GUI
Internal codebase
Miscellaneous
Thanks to everybody who contributed to this release:
Chris Moore
Christian von Roques
David Joel Schwartz
Douglas Huff
Fordy
Gavin Andresen
Giel van Schijndel
Gregory Maxwell
Jeff Garzik
Luke Dashjr
Matt Corallo
Michael Ford
Michael Hendricks
Peter Todd
Philip Kaufmann
Pieter Wuille
R E Broadley
Ricardo M. Correia
Rune K. Svendsen
Scott Ellis
Stephane Glondu
Wladimir J. van der Laan
cardpuncher
coderrr
fanquake
grimd34th
sje397
xanatos
Thanks to Sergio Lerner for reporting denial-of-service vulnerabilities fixed in this release.
Bitcoin version 0.7.1 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.1/
This is a bug-fix minor release.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Project source code is hosted at github; you can get
source-only tarballs/zipballs directly from there:
https://github.com/bitcoin/bitcoin/tarball/v0.7.1 # .tar.gz
https://github.com/bitcoin/bitcoin/zipball/v0.7.1 # .zip
Ubuntu Linux users can use the “Personal Package Archive” (PPA)
maintained by Matt Corallo to automatically keep
up-to-date. Just type:
sudo apt-add-repository ppa:bitcoin/bitcoin
sudo apt-get update
in your terminal, then install the bitcoin-qt package:
sudo apt-get install bitcoin-qt
Mac OSX 10.5 is no longer supported.
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you were running on Linux with a version that might have been compiled
with a different version of Berkeley DB (for example, if you were using an
Ubuntu PPA version), then run the old version again with the -detachdb
argument and shut it down; if you do not, then the new version will not
be able to read the database files and will exit with an error.
Explanation of -detachdb (and the new “stop true” RPC command):
The Berkeley DB database library stores data in both “.dat” and
“log” files, so the database is always in a consistent state,
even in case of power failure or other sudden shutdown. The
format of the “.dat” files is portable between different
versions of Berkeley DB, but the “log” files are not– even minor
version differences may have incompatible “log” files. The
-detachdb option moves any pending changes from the “log” files
to the “blkindex.dat” file for maximum compatibility, but makes
shutdown much slower. Note that the “wallet.dat” file is always
detached, and versions prior to 0.6.0 detached all databases
at shutdown.
Added a boolean argument to the RPC ‘stop’ command, if true sets
-detachdb to create standalone database .dat files before shutting down.
-salvagewallet command-line option, which moves any existing wallet.dat
to wallet.{timestamp}.dat and then attempts to salvage public/private
keys and master encryption keys (if the wallet is encrypted) into
a new wallet.dat. This should only be used if your wallet becomes
corrupted, and is not intended to replace regular wallet backups.
Import $DataDir/bootstrap.dat automatically, if it exists.
Qt 4.8.2 for Windows builds
openssl 1.0.1c
Clicking on a bitcoin: URI on Windows should now launch Bitcoin-Qt properly.
When running -testnet, use RPC port 18332 by default.
Better detection and handling of corrupt wallet.dat and blkindex.dat files.
Previous versions would crash with a DB_RUNRECOVERY exception, this
version detects most problems and tells you how to recover if it
cannot recover itself.
Fixed an uninitialized variable bug that could cause transactions to
be reported out of order.
Fixed a bug that could cause occasional crashes on exit.
Warn the user that they need to create fresh wallet backups after they
encrypt their wallet.
Thanks to everybody who contributed to this release:
Gavin Andresen
Jeff Garzik
Luke Dashjr
Mark Friedenbach
Matt Corallo
Philip Kaufmann
Pieter Wuille
Rune K. Svendsen
Virgil Dupras
Wladimir J. van der Laan
fanquake
kjj2
xanatos
Bitcoin version 0.7.2 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.7.2
This is a bug-fix minor release.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you were running on Linux with a version that might have been compiled
with a different version of Berkeley DB (for example, if you were using an
Ubuntu PPA version), then run the old version again with the -detachdb
argument and shut it down; if you do not, then the new version will not
be able to read the database files and will exit with an error.
Explanation of -detachdb (and the new “stop true” RPC command):
The Berkeley DB database library stores data in both “.dat” and
“log” files, so the database is always in a consistent state,
even in case of power failure or other sudden shutdown. The
format of the “.dat” files is portable between different
versions of Berkeley DB, but the “log” files are not– even minor
version differences may have incompatible “log” files. The
-detachdb option moves any pending changes from the “log” files
to the “blkindex.dat” file for maximum compatibility, but makes
shutdown much slower. Note that the “wallet.dat” file is always
detached, and versions prior to 0.6.0 detached all databases
at shutdown.
Prevent RPC ‘move’ from deadlocking. This was caused by trying to lock the
database twice.
Fix use-after-free problems in initialization and shutdown, the latter of
which caused Bitcoin-Qt to crash on Windows when exiting.
Correct library linking so building on Windows natively works.
Avoid a race condition and out-of-bounds read in block creation/mining code.
Improve platform compatibility quirks, including fix for 100% CPU utilization
on FreeBSD 9.
A few minor corrections to error handling, and updated translations.
OSX 10.5 supported again
Thanks to everybody who contributed to this release:
Alex
dansmith
Gavin Andresen
Gregory Maxwell
Jeff Garzik
Luke Dashjr
Philip Kaufmann
Pieter Wuille
Wladimir J. van der Laan
grimd34th
Bitcoin-Qt version 0.8.0 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.0/
This is a major release designed to improve performance and handle the
increasing volume of transactions on the network.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
The first time you run after the upgrade a re-indexing process will be
started that will take anywhere from 30 minutes to several hours,
depending on the speed of your machine.
This release no longer maintains a full index of historical transaction ids
by default, so looking up an arbitrary transaction using the getrawtransaction
RPC call will not work. If you need that functionality, you must run once
with -txindex=1 -reindex=1 to rebuild block-chain indices (see below for more
details).
Mac and Windows binaries are signed with certificates owned by the Bitcoin
Foundation, to be compatible with the new security features in OSX 10.8 and
Windows 8.
LevelDB, a fast, open-source, non-relational database from Google, is
now used to store transaction and block indices. LevelDB works much better
on machines with slow I/O and is faster in general. Berkeley DB is now only
used for the wallet.dat file (public and private wallet keys and transactions
relevant to you).
Pieter Wuille implemented many optimizations to the way transactions are
verified, so a running, synchronized node uses less working memory and does
much less I/O. He also implemented parallel signature checking, so if you
have a multi-CPU machine all CPUs will be used to verify transactions.
“Bloom filter” support in the network protocol for sending only relevant transactions to
lightweight clients.
contrib/verifysfbinaries is a shell-script to verify that the binary downloads
at sourceforge have not been tampered with. If you are able, you can help make
everybody’s downloads more secure by running this occasionally to check PGP
signatures against download file checksums.
contrib/spendfrom is a python-language command-line utility that demonstrates
how to use the “raw transactions” JSON-RPC api to send coins received from particular
addresses (also known as “coin control”).
dbcache : controls LevelDB memory usage.
par : controls how many threads to use to validate transactions. Defaults to the number
of CPUs on your machine, use -par=1 to limit to a single CPU.
txindex : maintains an extra index of old, spent transaction ids so they will be found
by the getrawtransaction JSON-RPC method.
reindex : rebuild block and transaction indices from the downloaded block data.
lockunspent / listlockunspent allow locking transaction outputs for a period of time so
they will not be spent by other processes that might be accessing the same wallet.
addnode / getaddednodeinfo methods, to connect to specific peers without restarting.
importprivkey now takes an optional boolean parameter (default true) to control whether
or not to rescan the blockchain for transactions after importing a new private key.
Privacy leak: the position of the “change” output in most transactions was not being
properly randomized, making network analysis of the transaction graph to identify
users’ wallets easier.
Zero-confirmation transaction vulnerability: accepting zero-confirmation transactions
(transactions that have not yet been included in a block) from somebody you do not
trust is still not recommended, because there will always be ways for attackers to
double-spend zero-confirmation transactions. However, this release includes a bug
fix that makes it a little bit more difficult for attackers to double-spend a
certain type (“lockTime in the future”) of zero-confirmation transaction.
Qt 4.8.3 (compiling against older versions of Qt 4 should continue to work)
Alexander Kjeldaas
Andrey Alekseenko
Arnav Singh
Christian von Roques
Eric Lombrozo
Forrest Voight
Gavin Andresen
Gregory Maxwell
Jeff Garzik
Luke Dashjr
Matt Corallo
Mike Cassano
Mike Hearn
Peter Todd
Philip Kaufmann
Pieter Wuille
Richard Schwab
Robert Backhaus
Rune K. Svendsen
Sergio Demian Lerner
Wladimir J. van der Laan
burger2
default
fanquake
grimd34th
justmoon
redshark1802
tucenaber
xanatos
Bitcoin-Qt/bitcoind version 0.8.1 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.1/
This is a maintenance release that adds a new network rule to avoid
a chain-forking incompatibility with versions 0.7.2 and earlier.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you
run 0.8.1 your blockchain files will be re-indexed, which will take
anywhere from 30 minutes to several hours, depending on the speed of
your machine.
Bitcoin-Qt version 0.8.2 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.2/
This is a maintenance release that fixes many bugs and includes
a few small new features.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
How to Upgrade
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you
run 0.8.2 your blockchain files will be re-indexed, which will take
anywhere from 30 minutes to several hours, depending on the speed of
your machine.
0.8.2 Release notes
Fee Policy changes
The default fee for low-priority transactions is lowered from 0.0005 BTC
(for each 1,000 bytes in the transaction; an average transaction is
about 500 bytes) to 0.0001 BTC.
Payments (transaction outputs) of 0.543 times the minimum relay fee
(0.00005430 BTC) are now considered ‘non-standard’, because storing them
costs the network more than they are worth and spending them will usually
cost their owner more in transaction fees than they are worth.
Non-standard transactions are not relayed across the network, are not included
in blocks by most miners, and will not show up in your wallet until they are
included in a block.
The default fee policy can be overridden using the -mintxfee and -minrelaytxfee
command-line options, but note that we intend to replace the hard-coded fees
with code that automatically calculates and suggests appropriate fees in the
0.9 release and note that if you set a fee policy significantly different from
the rest of the network your transactions may never confirm.
Bitcoin-Qt changes
MacOSX:
* OSX support for click-to-pay (bitcoin:) links
* Fix GUI disappearing problem on MacOSX (issue #1522)
Linux/Unix:
* Copy addresses to middle-mouse-button clipboard
Command-line options
JSON-RPC API changes
Networking changes
Wallet compatibility/rescuing
Known Bugs
Thanks to everybody who contributed to the 0.8.2 release!
APerson241
Andrew Poelstra
Calvin Owens
Chuck LeDuc Díaz
Colin Dean
David Griffith
David Serrano
Eric Lombrozo
Gavin Andresen
Gregory Maxwell
Jeff Garzik
Jonas Schnelli
Larry Gilbert
Luke Dashjr
Matt Corallo
Michael Ford
Mike Hearn
Patrick Brown
Peter Todd
Philip Kaufmann
Pieter Wuille
Richard Schwab
Roman Mindalev
Scott Howard
Tariq Bashir
Warren Togami
Wladimir J. van der Laan
freewil
gladoscc
kjj2
mb300sd
super3
Bitcoin-Qt version 0.8.3 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.3/
This is a maintenance release to fix a denial-of-service attack that
can cause nodes to crash.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
0.8.3 Release notes
Truncate over-size messages to prevent a memory exhaustion attack.
Fix a regression that causes excessive re-writing of the ‘peers.dat’ file.
Thanks to Peter Todd for responsibly disclosing the vulnerability
( CVE-2013-4627 ) and creating a fix.
Bitcoin-Qt version 0.8.4 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.4/
This is a maintenance release to fix a critical bug and three
security issues; we urge all users to upgrade.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you
run 0.8.4 your blockchain files will be re-indexed, which will take
anywhere from 30 minutes to several hours, depending on the speed of
your machine.
0.8.4 Release notes
An attacker could send a series of messages that resulted in
an integer division-by-zero error in the Bloom Filter handling
code, causing the Bitcoin-Qt or bitcoind process to crash.
Bloom filters were introduced with version 0.8, so versions 0.8.0
through 0.8.3 are vulnerable to this critical denial-of-service attack.
A constant-time algorithm is now used to check RPC password
guess attempts; fixes https://github.com/bitcoin/bitcoin/issues/2838
(CVE-2013-4165)
Implement a better fix for the fill-memory-with-orphan-transactions
attack that was fixed in 0.8.3. See
https://bitslog.wordpress.com/2013/07/18/buggy-cve-2013-4627-patch-open-new-vectors-of-attack/
for a description of the weaknesses of the previous fix.
(CVE-2013-4627)
Fix multi-block reorg transaction resurrection.
Fix non-standard disconnected transactions causing mempool orphans.
This bug could cause nodes running with the -debug flag to crash.
OSX: use ‘FD_FULLSYNC’ with LevelDB, which will (hopefully!)
prevent the database corruption issues many people have
experienced on OSX.
Linux: clicking on bitcoin: links was broken if you were using
a Gnome-based desktop.
Fix a hang-at-shutdown bug that only affects users that compile
their own version of Bitcoin against Boost versions 1.50-1.52.
Checkpoint at block 250,000 to speed up initial block downloads
and make the progress indicator when downloading more accurate.
Pieter Wuille
Warren Togami
Patrick Strateman
pakt
Gregory Maxwell
Sergio Demian Lerner
grayleonard
Cory Fields
Matt Corallo
Gavin Andresen
Bitcoin-Qt version 0.8.5 is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.5/
This is a maintenance release to fix a critical bug;
we urge all users to upgrade.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you
run 0.8.5 your blockchain files will be re-indexed, which will take
anywhere from 30 minutes to several hours, depending on the speed of
your machine.
0.8.5 Release notes
Transactions with version numbers larger than 0x7fffffff were
incorrectly being relayed and included in blocks.
Blocks containing transactions with version numbers larger
than 0x7fffffff caused the code that checks for LevelDB database
inconsistencies at startup to erroneously report database
corruption and suggest that you reindex your database.
This release also contains a non-critical fix to the code that
enforces BIP 34 (block height in the coinbase transaction).
–
Thanks to Gregory Maxwell and Pieter Wuille for quickly
identifying and fixing the transaction version number bug.
Bitcoin-Qt version 0.8.6 final is now available from:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.6/
This is a maintenance release to fix a critical bug; we urge all users to upgrade.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you already downloaded 0.8.6rc1 you do not need to re-download. This release is exactly the same.
If you are running an older version, shut it down. Wait
until it has completely shut down (which might take a few minutes for older
versions), then run the installer (on Windows) or just copy over
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you
run 0.8.6 your blockchain files will be re-indexed, which will take
anywhere from 30 minutes to several hours, depending on the speed of
your machine.
0.8.6 Release notes
Default block size increase for miners.
(see https://gist.github.com/gavinandresen/7670433#086-accept-into-block)
Remove the all-outputs-must-be-greater-than-CENT-to-qualify-as-free rule for relaying
(see https://gist.github.com/gavinandresen/7670433#086-relaying)
Lower maximum size for free transaction creation
(see https://gist.github.com/gavinandresen/7670433#086-wallet)
OSX block chain database corruption fixes
F_FULLSYNC
instead of fsync on OSXFix nodes forwarding transactions with empty vins and getting banned
Network code performance and robustness improvements
Additional debug.log logging for diagnosis of network problems, log timestamps by default
Fix Bitcoin-Qt startup crash when clicking dock icon on OSX
Fix memory leaks in CKey::SetCompactSignature() and Key::SignCompact()
Fix rare GUI crash on send
Various small GUI, documentation and build fixes
Note: Gavin Andresen’s GPG signing key for SHA256SUMS.asc has been changed from key id 1FC730C1 to sub key 7BF6E212 (see https://github.com/bitcoin/bitcoin.org/pull/279).
Bitcoin Core version 0.9.0 is now available from:
https://bitcoin.org/bin/0.9.0/
This is a new major version release, bringing both new features and
bug fixes.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), uninstall all
earlier versions of Bitcoin, then run the installer (on Windows) or just copy
over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.0 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.
On Windows, do not forget to uninstall all earlier versions of the Bitcoin
client first, especially if you are switching to the 64-bit version.
New in 0.9.0 is the Windows 64-bit version of the client. There have been
frequent reports of users running out of virtual memory on 32-bit systems
during the initial sync. Because of this it is recommended to install the
64-bit version if your system supports it.
NOTE: Release candidate 2 Windows binaries are not code-signed; use PGP
and the SHA256SUMS.asc file to make sure your binaries are correct.
In the final 0.9.0 release, Windows setup.exe binaries will be code-signed.
0.9.0 drops support for older Macs. The minimum requirements are now:
* A 64-bit-capable CPU (see http://support.apple.com/kb/ht3696);
* Mac OS 10.6 or later (see https://support.apple.com/kb/ht1633).
The ‘chainstate’ for this release is not always compatible with previous
releases, so if you run 0.9 and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
old release (due to ‘pruned outputs’ being omitted from the index of
unspent transaction outputs).
Running the old release with the -reindex option will rebuild the chainstate
data structures and correct the problem.
Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
the blockchain for missing spent coins, which will take a long time (tens
of minutes on a typical machine).
To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we
have renamed the reference client to Bitcoin Core.
On OP_RETURN: There was been some confusion and misunderstanding in
the community, regarding the OP_RETURN feature in 0.9 and data in the
blockchain. This change is not an endorsement of storing data in the
blockchain. The OP_RETURN change creates a provably-prunable output,
to avoid data storage schemes – some of which were already deployed –
that were storing arbitrary data such as images as forever-unspendable
TX outputs, bloating bitcoin’s UTXO database.
Storing arbitrary data in the blockchain is still a bad idea; it is less
costly and far more efficient to store non-currency data elsewhere.
For 0.9.0 we switched to an autotools-based build system instead of individual
(q)makefiles.
Using the standard “./autogen.sh; ./configure; make” to build Bitcoin-Qt and
bitcoind makes it easier for experienced open source developers to contribute
to the project.
Be sure to check doc/build-*.md for your platform before building from source.
Another change in the 0.9 release is moving away from the bitcoind executable
functioning both as a server and as a RPC client. The RPC client functionality
(“tell the running bitcoin daemon to do THIS”) was split into a separate
executable, ‘bitcoin-cli’. The RPC client code will eventually be removed from
bitcoind, but will be kept for backwards compatibility for a release or two.
walletpassphrase
RPCThe behavior of the walletpassphrase
RPC when the wallet is already unlocked
has changed between 0.8 and 0.9.
The 0.8 behavior of walletpassphrase
is to fail when the wallet is already unlocked:
> walletpassphrase 1000
walletunlocktime = now + 1000
> walletpassphrase 10
Error: Wallet is already unlocked (old unlock time stays)
The new behavior of walletpassphrase
is to set a new unlock time overriding
the old one:
> walletpassphrase 1000
walletunlocktime = now + 1000
> walletpassphrase 10
walletunlocktime = now + 10 (overriding the old unlock time)
This release contains a few fixes for transaction ID (TXID) malleability
issues:
This release drops the default fee required to relay transactions across the
network and for miners to consider the transaction in their blocks to
0.01mBTC per kilobyte.
Note that getting a transaction relayed across the network does NOT guarantee
that the transaction will be accepted by a miner; by default, miners fill
their blocks with 50 kilobytes of high-priority transactions, and then with
700 kilobytes of the highest-fee-per-kilobyte transactions.
The minimum relay/mining fee-per-kilobyte may be changed with the
minrelaytxfee option. Note that previous releases incorrectly used
the mintxfee setting to determine which low-priority transactions should
be considered for inclusion in blocks.
The wallet code still uses a default fee for low-priority transactions of
0.1mBTC per kilobyte. During periods of heavy transaction volume, even this
fee may not be enough to get transactions confirmed quickly; the mintxfee
option may be used to override the default.
0.9.0 Release notes
RPC:
importprivkey
importprivkey
Command-line options:
-noserver
with bitcoindBlock-chain handling and storage:
Wallet:
Mining:
Protocol and network:
Validation:
Build system:
--disable-wallet
to configure, this GUI:
Bitcoin Core
Miscellaneous:
Thanks to everyone who contributed to this release:
Bitcoin Core version 0.9.1 is now available from:
https://bitcoin.org/bin/0.9.1/
This is a security update. It is recommended to upgrade to this release
as soon as possible.
It is especially important to upgrade if you currently have version
0.9.0 installed and are using the graphical interface OR you are using
bitcoind from any pre-0.9.1 version, and have enabled SSL for RPC and
have configured allowip to allow rpc connections from potentially
hostile hosts.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.1 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.
0.9.1 Release notes
No code changes were made between 0.9.0 and 0.9.1. Only the dependencies were changed.
Upgrade OpenSSL to 1.0.1g. This release fixes the following vulnerabilities which can
affect the Bitcoin Core software:
CVE-2014-0160 (“heartbleed”)
A missing bounds check in the handling of the TLS heartbeat extension can
be used to reveal up to 64k of memory to a connected client or server.
CVE-2014-0076
The Montgomery ladder implementation in OpenSSL does not ensure that
certain swap operations have a constant-time behavior, which makes it
easier for local users to obtain ECDSA nonces via a FLUSH+RELOAD cache
side-channel attack.
Add statically built executables to Linux build
Credits go to the OpenSSL team for fixing the vulnerabilities quickly.
Bitcoin Core version 0.9.2.1 is now available from:
https://bitcoin.org/bin/0.9.2.1/
This is a new minor version release, bringing mostly bug fixes and some minor
improvements. OpenSSL has been updated because of a security issue (CVE-2014-0224).
Upgrading to this release is recommended.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.2.1 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.
The ‘chainstate’ for this release is not always compatible with previous
releases, so if you run 0.9.x and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
old release (due to ‘pruned outputs’ being omitted from the index of
unspent transaction outputs).
Running the old release with the -reindex option will rebuild the chainstate
data structures and correct the problem.
Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
the blockchain for missing spent coins, which will take a long time (tens
of minutes on a typical machine).
Important changes
The deterministic build system that was already used for Windows and Linux
builds is now used for OSX as well. Although the resulting executables have
been tested quite a bit, there could be possible regressions. Be sure to report
these on the Github bug tracker mentioned above.
For Linux we now build against Qt 4.6, and filter the symbols for libstdc++ and glibc.
This brings back compatibility with
0.9.2 - 0.9.2.1 Release notes
The OpenSSL dependency in the gitian builds has been upgraded to 1.0.1h because of CVE-2014-0224.
RPC:
getwalletinfo
, getblockchaininfo
and getnetworkinfo
calls (will replace hodge-podge getinfo
at some point)relayfee
field to getnetworkinfo
getpeerinfo
sendrawtransaction
: report the reject code and reason, and make it possible to re-send transactions that are already in the mempoolgetmininginfo
show right genproclimitCommand-line options:
-printblocktree
outputBlock-chain handling and storage:
Protocol and network code:
Wallet:
Build system:
GUI:
Miscellaneous:
Thanks to everyone who contributed to this release:
Bitcoin Core version 0.9.2 is now available from:
https://bitcoin.org/bin/0.9.2/
This is a new minor version release, bringing mostly bug fixes and some minor
improvements. OpenSSL has been updated because of a security issue (CVE-2014-0224).
Upgrading to this release is recommended.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.2 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.
The ‘chainstate’ for this release is not always compatible with previous
releases, so if you run 0.9.x and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
old release (due to ‘pruned outputs’ being omitted from the index of
unspent transaction outputs).
Running the old release with the -reindex option will rebuild the chainstate
data structures and correct the problem.
Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
the blockchain for missing spent coins, which will take a long time (tens
of minutes on a typical machine).
Important changes
The deterministic build system that was already used for Windows and Linux
builds is now used for OSX as well. Although the resulting executables have
been tested quite a bit, there could be possible regressions. Be sure to report
these on the Github bug tracker mentioned above.
For Linux we now build against Qt 4.6, and filter the symbols for libstdc++ and glibc.
This brings back compatibility with
0.9.2 Release notes
The OpenSSL dependency in the gitian builds has been upgraded to 1.0.1h because of CVE-2014-0224.
RPC:
getwalletinfo
, getblockchaininfo
and getnetworkinfo
calls (will replace hodge-podge getinfo
at some point)relayfee
field to getnetworkinfo
getpeerinfo
sendrawtransaction
: report the reject code and reason, and make it possible to re-send transactions that are already in the mempoolgetmininginfo
show right genproclimitCommand-line options:
-printblocktree
outputBlock-chain handling and storage:
Protocol and network code:
Wallet:
Build system:
GUI:
Miscellaneous:
Thanks to everyone who contributed to this release:
Bitcoin Core version 0.9.3 is now available from:
https://bitcoin.org/bin/0.9.3/
This is a new minor version release, bringing only bug fixes and updated
translations. Upgrading to this release is recommended.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.3 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.
The ‘chainstate’ for this release is not always compatible with previous
releases, so if you run 0.9.x and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
old release (due to ‘pruned outputs’ being omitted from the index of
unspent transaction outputs).
Running the old release with the -reindex option will rebuild the chainstate
data structures and correct the problem.
Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
the blockchain for missing spent coins, which will take a long time (tens
of minutes on a typical machine).
0.9.3 Release notes
RPC:
- Avoid a segfault on getblock if it can’t read a block from disk
- Add paranoid return value checks in base58
Protocol and network code:
- Don’t poll showmyip.com, it doesn’t exist anymore
- Add a way to limit deserialized string lengths and use it
- Add a new checkpoint at block 295,000
- Increase IsStandard() scriptSig length
- Avoid querying DNS seeds, if we have open connections
- Remove a useless millisleep in socket handler
- Stricter memory limits on CNode
- Better orphan transaction handling
- Add -maxorphantx=
and -maxorphanblocks=
options for control over the maximum orphan transactions and blocks
Wallet:
- Check redeemScript size does not exceed 520 byte limit
- Ignore (and warn about) too-long redeemScripts while loading wallet
GUI:
- fix ‘opens in testnet mode when presented with a BIP-72 link with no fallback’
- AvailableCoins: acquire cs_main mutex
- Fix unicode character display on MacOSX
Miscellaneous:
- key.cpp: fail with a friendlier message on missing ssl EC support
- Remove bignum dependency for scripts
- Upgrade OpenSSL to 1.0.1i (see https://www.openssl.org/news/secadv_20140806.txt - just to be sure, no critical issues for Bitcoin Core)
- Upgrade miniupnpc to 1.9.20140701
- Fix boost detection in build system on some platforms
Thanks to everyone who contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.9.4 is now available from:
https://bitcoin.org/bin/0.9.4/
This is a new minor version release, bringing only bug fixes and updated
translations. Upgrading to this release is recommended.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
How to Upgrade
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
OpenSSL Warning
OpenSSL 1.0.0p / 1.0.1k was recently released and is being pushed out by
various operating system maintainers. Review by Gregory Maxwell determined that
this update is incompatible with the Bitcoin system and could lead to consensus
forks.
Bitcoin Core released binaries from https://bitcoin.org are unaffected,
as are any built with the gitian deterministic build system.
However, if you are running either
upgrade to Bitcoin Core 0.9.4, which includes a workaround, before updating
OpenSSL.
The incompatibility is due to the OpenSSL update changing the
behavior of ECDSA validation to reject any signature which is
not encoded in a very rigid manner. This was a result of
OpenSSL’s change for CVE-2014-8275 “Certificate fingerprints
can be modified”.
We are specifically aware of potential hard-forks due to signature
encoding handling and had been hoping to close them via BIP62 in 0.10.
BIP62’s purpose is to improve transaction malleability handling and
as a side effect rigidly defines the encoding for signatures, but the
overall scope of BIP62 has made it take longer than we’d like to
deploy.
0.9.4 changelog
Validation:
- b8e81b7
consensus: guard against openssl’s new strict DER checks
- 60c51f1
fail immediately on an empty signature
- 037bfef
Improve robustness of DER recoding code
Command-line options:
- cd5164a
Make -proxy set all network types, avoiding a connect leak.
P2P:
- bb424e4
Limit the number of new addressses to accumulate
RPC:
- 0a94661
Disable SSLv3 (in favor of TLS) for the RPC client and server.
Build system:
- f047dfa
gitian: openssl-1.0.1i.tar.gz -> openssl-1.0.1k.tar.gz
- 5b9f78d
build: Fix OSX build when using Homebrew and qt5
- ffab1dd
Keep symlinks when copying into .app bundle
- 613247f
osx: fix signing to make Gatekeeper happy (again)
Miscellaneous:
- 25b49b5
Refactor -alertnotify code
- 2743529
doc: Add instructions for consistent Mac OS X build names
Thanks to who contributed to this release, at least:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.9.5 is now available from:
https://bitcoin.org/bin/0.9.5/
This is a new minor version release, with the goal of backporting BIP66. There
are also a few bug fixes and updated translations. Upgrading to this release is
recommended.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
How to Upgrade
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Notable changes
Bitcoin Core’s block templates are now for version 3 blocks only, and any mining
software relying on its getblocktemplate
must be updated in parallel to use
libblkmaker either version 0.4.2 or any version from 0.5.1 onward.
If you are solo mining, this will affect you the moment you upgrade Bitcoin
Core, which must be done prior to BIP66 achieving its 951/1001 status.
If you are mining with the stratum mining protocol: this does not affect you.
If you are mining with the getblocktemplate protocol to a pool: this will affect
you at the pool operator’s discretion, which must be no later than BIP66
achieving its 951/1001 status.
0.9.5 changelog
74f29c2
Check pindexBestForkBase for null9cd1dd9
Fix priority calculation in CreateTransaction6b4163b
Sanitize command strings before logging them.3230b32
Raise version of created blocks, and enforce DERSIG in mempool989d499
Backport of some of BIP66’s testsab03660
Implement BIP 66 validation rules and switchover logic8438074
build: fix dynamic boost check when –with-boost= is usedThanks to who contributed to this release, at least:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.10.0 is now available from:
https://bitcoin.org/bin/0.10.0/
This is a new major version release, bringing both new features and
bug fixes.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 makes use of headers-first synchronization and parallel
block download (see further), the block files and databases are not
backwards-compatible with older versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility.
Notable changes
Bitcoin Core now uses ‘headers-first synchronization’. This means that we first
ask peers for block headers (a total of 27 megabytes, as of December 2014) and
validate those. In a second stage, when the headers have been discovered, we
download the blocks. However, as we already know about the whole chain in
advance, the blocks can be downloaded in parallel from all available peers.
In practice, this means a much faster and more robust synchronization. On
recent hardware with a decent network link, it can be as little as 3 hours
for an initial full synchronization. You may notice a slower progress in the
very first few minutes, when headers are still being fetched and verified, but
it should gain speed afterwards.
A few RPCs were added/updated as a result of this:
- getblockchaininfo
now returns the number of validated headers in addition to
the number of validated blocks.
- getpeerinfo
lists both the number of blocks and headers we know we have in
common with each peer. While synchronizing, the heights of the blocks that we
have requested from peers (but haven’t received yet) are also listed as
‘inflight’.
- A new RPC getchaintips
lists all known branches of the block chain,
including those we only have headers for.
This release automatically estimates how high a transaction fee (or how
high a priority) transactions require to be confirmed quickly. The default
settings will create transactions that confirm quickly; see the new
‘txconfirmtarget’ setting to control the tradeoff between fees and
confirmation times. Fees are added by default unless the ‘sendfreetransactions’
setting is enabled.
Prior releases used hard-coded fees (and priorities), and would
sometimes create transactions that took a very long time to confirm.
Statistics used to estimate fees and priorities are saved in the
data directory in the fee_estimates.dat
file just before
program shutdown, and are read in at startup.
New command line options for transaction fee changes:
- -txconfirmtarget=n
: create transactions that have enough fees (or priority)
so they are likely to begin confirmation within n blocks (default: 1). This setting
is over-ridden by the -paytxfee option.
- -sendfreetransactions
: Send transactions as zero-fee transactions if possible
(default: 0)
New RPC commands for fee estimation:
- estimatefee nblocks
: Returns approximate fee-per-1,000-bytes needed for
a transaction to begin confirmation within nblocks. Returns -1 if not enough
transactions have been observed to compute a good estimate.
- estimatepriority nblocks
: Returns approximate priority needed for
a zero-fee transaction to begin confirmation within nblocks. Returns -1 if not
enough free transactions have been observed to compute a good
estimate.
Subnet matching for the purpose of access control is now done
by matching the binary network address, instead of with string wildcard matching.
For the user this means that -rpcallowip
takes a subnet specification, which can be
1.2.3.4
or fe80::0012:3456:789a:bcde
)1.2.3.0/24
or fe80::0000/64
)1.2.3.4/255.255.255.0
or fe80::0012:3456:789a:bcde/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
)An arbitrary number of -rpcallow
arguments can be given. An incoming connection will be accepted if its origin address
matches one of them.
For example:
0.9.x and before | 0.10.x |
---|---|
-rpcallowip=192.168.1.1 |
-rpcallowip=192.168.1.1 (unchanged) |
-rpcallowip=192.168.1.* |
-rpcallowip=192.168.1.0/24 |
-rpcallowip=192.168.* |
-rpcallowip=192.168.0.0/16 |
-rpcallowip=* (dangerous!) |
-rpcallowip=::/0 (still dangerous!) |
Using wildcards will result in the rule being rejected with the following error in debug.log:
Error: Invalid -rpcallowip subnet specification: *. Valid are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24).
A new HTTP API is exposed when running with the -rest
flag, which allows
unauthenticated access to public node data.
It is served on the same port as RPC, but does not need a password, and uses
plain HTTP instead of JSON-RPC.
Assuming a local RPC server running on port 8332, it is possible to request:
- Blocks: http://localhost:8332/rest/block/HASH.EXT
- Blocks without transactions: http://localhost:8332/rest/block/notxdetails/HASH.EXT
- Transactions (requires -txindex
): http://localhost:8332/rest/tx/HASH.EXT
In every case, EXT can be bin
(for raw binary data), hex
(for hex-encoded
binary) or json
.
For more details, see the doc/REST-interface.md
document in the repository.
The RPC server is started earlier now, before most of the expensive
intialisations like loading the block index. It is available now almost
immediately after starting the process. However, until all initialisations
are done, it always returns an immediate error with code -28 to all calls.
This new behaviour can be useful for clients to know that a server is already
started and will be available soon (for instance, so that they do not
have to start it themselves).
For 0.10 the security of signing against unusual attacks has been
improved by making the signatures constant time and deterministic.
This change is a result of switching signing to use libsecp256k1
instead of OpenSSL. Libsecp256k1 is a cryptographic library
optimized for the curve Bitcoin uses which was created by Bitcoin
Core developer Pieter Wuille.
There exist attacks[1] against most ECC implementations where an
attacker on shared virtual machine hardware could extract a private
key if they could cause a target to sign using the same key hundreds
of times. While using shared hosts and reusing keys are inadvisable
for other reasons, it’s a better practice to avoid the exposure.
OpenSSL has code in their source repository for derandomization
and reduction in timing leaks that we’ve eagerly wanted to use for a
long time, but this functionality has still not made its
way into a released version of OpenSSL. Libsecp256k1 achieves
significantly stronger protection: As far as we’re aware this is
the only deployed implementation of constant time signing for
the curve Bitcoin uses and we have reason to believe that
libsecp256k1 is better tested and more thoroughly reviewed
than the implementation in OpenSSL.
[1] https://eprint.iacr.org/2014/161.pdf
The wallet can now track transactions to and from wallets for which you know
all addresses (or scripts), even without the private keys.
This can be used to track payments without needing the private keys online on a
possibly vulnerable system. In addition, it can help for (manual) construction
of multisig transactions where you are only one of the signers.
One new RPC, importaddress
, is added which functions similarly to
importprivkey
, but instead takes an address or script (in hexadecimal) as
argument. After using it, outputs credited to this address or script are
considered to be received, and transactions consuming these outputs will be
considered to be sent.
The following RPCs have optional support for watch-only:
getbalance
, listreceivedbyaddress
, listreceivedbyaccount
,
listtransactions
, listaccounts
, listsinceblock
, gettransaction
. See the
RPC documentation for those methods for more information.
Compared to using getrawtransaction
, this mechanism does not require
-txindex
, scales better, integrates better with the wallet, and is compatible
with future block chain pruning functionality. It does mean that all relevant
addresses need to added to the wallet before the payment, though.
Starting from 0.10.0, the Bitcoin Core distribution includes a consensus library.
The purpose of this library is to make the verification functionality that is
critical to Bitcoin’s consensus available to other applications, e.g. to language
bindings such as python-bitcoinlib or
alternative node implementations.
This library is called libbitcoinconsensus.so
(or, .dll
for Windows).
Its interface is defined in the C header bitcoinconsensus.h.
In its initial version the API includes two functions:
bitcoinconsensus_verify_script
verifies a script. It returns whether the indicated input of the provided serialized transaction bitcoinconsensus_version
returns the API version, currently at an experimental 0
The functionality is planned to be extended to e.g. UTXO management in upcoming releases, but the interface
for existing methods should remain stable.
The IsStandard() rules have been almost completely removed for P2SH
redemption scripts, allowing applications to make use of any valid
script type, such as “n-of-m OR y”, hash-locked oracle addresses, etc.
While the Bitcoin protocol has always supported these types of script,
actually using them on mainnet has been previously inconvenient as
standard Bitcoin Core nodes wouldn’t relay them to miners, nor would
most miners include them in blocks they mined.
It has been observed that many of the RPC functions offered by bitcoind are
“pure functions”, and operate independently of the bitcoind wallet. This
included many of the RPC “raw transaction” API functions, such as
createrawtransaction.
bitcoin-tx is a newly introduced command line utility designed to enable easy
manipulation of bitcoin transactions. A summary of its operation may be
obtained via “bitcoin-tx –help” Transactions may be created or signed in a
manner similar to the RPC raw tx API. Transactions may be updated, deleting
inputs or outputs, or appending new inputs and outputs. Custom scripts may be
easily composed using a simple text notation, borrowed from the bitcoin test
suite.
This tool may be used for experimenting with new transaction types, signing
multi-party transactions, and many other uses. Long term, the goal is to
deprecate and remove “pure function” RPC API calls, as those do not require a
server round-trip to execute.
Other utilities “bitcoin-key” and “bitcoin-script” have been proposed, making
key and script operations easily accessible via command line.
Bitcoin Core’s block templates are now for version 3 blocks only, and any mining
software relying on its getblocktemplate
must be updated in parallel to use
libblkmaker either version 0.4.2 or any version from 0.5.1 onward.
If you are solo mining, this will affect you the moment you upgrade Bitcoin
Core, which must be done prior to BIP66 achieving its 951/1001 status.
If you are mining with the stratum mining protocol: this does not affect you.
If you are mining with the getblocktemplate protocol to a pool: this will affect
you at the pool operator’s discretion, which must be no later than BIP66
achieving its 951/1001 status.
The prioritisetransaction
RPC method has been added to enable miners to
manipulate the priority of transactions on an individual basis.
Bitcoin Core now supports BIP 22 long polling, so mining software can be
notified immediately of new templates rather than having to poll periodically.
Support for BIP 23 block proposals is now available in Bitcoin Core’s
getblocktemplate
method. This enables miners to check the basic validity of
their next block before expending work on it, reducing risks of accidental
hardforks or mining invalid blocks.
Two new options to control mining policy:
- -datacarrier=0/1
: Relay and mine “data carrier” (OP_RETURN) transactions
if this is 1.
- -datacarriersize=n
: Maximum size, in bytes, we consider acceptable for
“data carrier” outputs.
The relay policy has changed to more properly implement the desired behavior of not
relaying free (or very low fee) transactions unless they have a priority above the
AllowFreeThreshold(), in which case they are relayed subject to the rate limiter.
Bitcoin Core 0.10 implements BIP 66, which introduces block version 3, and a new
consensus rule, which prohibits non-DER signatures. Such transactions have been
non-standard since Bitcoin v0.8.0 (released in February 2013), but were
technically still permitted inside blocks.
This change breaks the dependency on OpenSSL’s signature parsing, and is
required if implementations would want to remove all of OpenSSL from the
consensus code.
The same miner-voting mechanism as in BIP 34 is used: when 751 out of a
sequence of 1001 blocks have version number 3 or higher, the new consensus
rule becomes active for those blocks. When 951 out of a sequence of 1001
blocks have version number 3 or higher, it becomes mandatory for all blocks.
Backward compatibility with current mining software is NOT provided, thus miners
should read the first paragraph of “Mining and relay policy enhancements” above.
0.10.0 Change log
Detailed release notes follow. This overview includes changes that affect external
behavior, not code moves, refactors or string updates.
RPC:
- f923c07
Support IPv6 lookup in bitcoin-cli even when IPv6 only bound on localhost
- b641c9c
Fix addnode “onetry”: Connect with OpenNetworkConnection
- 171ca77
estimatefee / estimatepriority RPC methods
- b750cf1
Remove cli functionality from bitcoind
- f6984e8
Add “chain” to getmininginfo, improve help in getblockchaininfo
- 99ddc6c
Add nLocalServices info to RPC getinfo
- cf0c47b
Remove getwork() RPC call
- 2a72d45
prioritisetransaction
- e44fea5
Add an option -datacarrier
to allow users to disable relaying/mining data carrier transactions
- 2ec5a3d
Prevent easy RPC memory exhaustion attack
- d4640d7
Added argument to getbalance to include watchonly addresses and fixed errors in balance calculation
- 83f3543
Added argument to listaccounts to include watchonly addresses
- 952877e
Showing ‘involvesWatchonly’ property for transactions returned by ‘listtransactions’ and ‘listsinceblock’. It is only appended when the transaction involves a watchonly address
- d7d5d23
Added argument to listtransactions and listsinceblock to include watchonly addresses
- f87ba3d
added includeWatchonly argument to ‘gettransaction’ because it affects balance calculation
- 0fa2f88
added includedWatchonly argument to listreceivedbyaddress/…account
- 6c37f7f
getrawchangeaddress
: fail when keypool exhausted and wallet locked
- ff6a7af
getblocktemplate: longpolling support
- c4a321f
Add peerid to getpeerinfo to allow correlation with the logs
- 1b4568c
Add vout to ListTransactions output
- b33bd7a
Implement “getchaintips” RPC command to monitor blockchain forks
- 733177e
Remove size limit in RPC client, keep it in server
- 6b5b7cb
Categorize rpc help overview
- 6f2c26a
Closely track mempool byte total. Add “getmempoolinfo” RPC
- aa82795
Add detailed network info to getnetworkinfo RPC
- 01094bd
Don’t reveal whether password is <20 or >20 characters in RPC
- 57153d4
rpc: Compute number of confirmations of a block from block height
- ff36cbe
getnetworkinfo: export local node’s client sub-version string
- d14d7de
SanitizeString: allow ‘(’ and ‘)’
- 31d6390
Fixed setaccount accepting foreign address
- b5ec5fe
update getnetworkinfo help with subversion
- ad6e601
RPC additions after headers-first
- 33dfbf5
rpc: Fix leveldb iterator leak, and flush before gettxoutsetinfo
- 2aa6329
Enable customising node policy for datacarrier data size with a -datacarriersize option
- f877aaa
submitblock: Use a temporary CValidationState to determine accurately the outcome of ProcessBlock
- e69a587
submitblock: Support for returning specific rejection reasons
- af82884
Add “warmup mode” for RPC server
- e2655e0
Add unauthenticated HTTP REST interface to public blockchain data
- 683dc40
Disable SSLv3 (in favor of TLS) for the RPC client and server
- 44b4c0d
signrawtransaction: validate private key
- 9765a50
Implement BIP 23 Block Proposal
- f9de17e
Add warning comment to getinfo
Command-line options:
- ee21912
Use netmasks instead of wildcards for IP address matching
- deb3572
Add -rpcbind
option to allow binding RPC port on a specific interface
- 96b733e
Add -version
option to get just the version
- 1569353
Add -stopafterblockimport
option
- 77cbd46
Let -zapwallettxes recover transaction meta data
- 1c750db
remove -tor compatibility code (only allow -onion)
- 4aaa017
rework help messages for fee-related options
- 4278b1d
Clarify error message when invalid -rpcallowip
- 6b407e4
-datadir is now allowed in config files
- bdd5b58
Add option -sysperms
to disable 077 umask (create new files with system default umask)
- cbe39a3
Add “bitcoin-tx” command line utility and supporting modules
- dbca89b
Trigger -alertnotify if network is upgrading without you
- ad96e7c
Make -reindex cope with out-of-order blocks
- 16d5194
Skip reindexed blocks individually
- ec01243
–tracerpc option for regression tests
- f654f00
Change -genproclimit default to 1
- 3c77714
Make -proxy set all network types, avoiding a connect leak
- 57be955
Remove -printblock, -printblocktree, and -printblockindex
- ad3d208
remove -maxorphanblocks config parameter since it is no longer functional
Block and transaction handling:
- 7a0e84d
ProcessGetData(): abort if a block file is missing from disk
- 8c93bf4
LoadBlockIndexDB(): Require block db reindex if any blk*.dat
files are missing
- 77339e5
Get rid of the static chainMostWork (optimization)
- 4e0eed8
Allow ActivateBestChain to release its lock on cs_main
- 18e7216
Push cs_mains down in ProcessBlock
- fa126ef
Avoid undefined behavior using CFlatData in CScript serialization
- 7f3b4e9
Relax IsStandard rules for pay-to-script-hash transactions
- c9a0918
Add a skiplist to the CBlockIndex structure
- bc42503
Use unordered_map for CCoinsViewCache with salted hash (optimization)
- d4d3fbd
Do not flush the cache after every block outside of IBD (optimization)
- ad08d0b
Bugfix: make CCoinsViewMemPool support pruned entries in underlying cache
- 5734d4d
Only remove actualy failed blocks from setBlockIndexValid
- d70bc52
Rework block processing benchmark code
- 714a3e6
Only keep setBlockIndexValid entries that are possible improvements
- ea100c7
Reduce maximum coinscache size during verification (reduce memory usage)
- 4fad8e6
Reject transactions with excessive numbers of sigops
- b0875eb
Allow BatchWrite to destroy its input, reducing copying (optimization)
- 92bb6f2
Bypass reloading blocks from disk (optimization)
- 2e28031
Perform CVerifyDB on pcoinsdbview instead of pcoinsTip (reduce memory usage)
- ab15b2e
Avoid copying undo data (optimization)
- 341735e
Headers-first synchronization
- afc32c5
Fix rebuild-chainstate feature and improve its performance
- e11b2ce
Fix large reorgs
- ed6d1a2
Keep information about all block files in memory
- a48f2d6
Abstract context-dependent block checking from acceptance
- 7e615f5
Fixed mempool sync after sending a transaction
- 51ce901
Improve chainstate/blockindex disk writing policy
- a206950
Introduce separate flushing modes
- 9ec75c5
Add a locking mechanism to IsInitialBlockDownload to ensure it never goes from false to true
- 868d041
Remove coinbase-dependant transactions during reorg
- 723d12c
Remove txn which are invalidated by coinbase maturity during reorg
- 0cb8763
Check against MANDATORY flags prior to accepting to mempool
- 8446262
Reject headers that build on an invalid parent
- 008138c
Bugfix: only track UTXO modification after lookup
P2P protocol and network code:
- f80cffa
Do not trigger a DoS ban if SCRIPT_VERIFY_NULLDUMMY fails
- c30329a
Add testnet DNS seed of Alex Kotenko
- 45a4baf
Add testnet DNS seed of Andreas Schildbach
- f1920e8
Ping automatically every 2 minutes (unconditionally)
- 806fd19
Allocate receive buffers in on the fly
- 6ecf3ed
Display unknown commands received
- aa81564
Track peers’ available blocks
- caf6150
Use async name resolving to improve net thread responsiveness
- 9f4da19
Use pong receive time rather than processing time
- 0127a9b
remove SOCKS4 support from core and GUI, use SOCKS5
- 40f5cb8
Send rejects and apply DoS scoring for errors in direct block validation
- dc942e6
Introduce whitelisted peers
- c994d2e
prevent SOCKET leak in BindListenPort()
- a60120e
Add built-in seeds for .onion
- 60dc8e4
Allow -onlynet=onion to be used
- 3a56de7
addrman: Do not propagate obviously poor addresses onto the network
- 6050ab6
netbase: Make SOCKS5 negotiation interruptible
- 604ee2a
Remove tx from AlreadyAskedFor list once we receive it, not when we process it
- efad808
Avoid reject message feedback loops
- 71697f9
Separate protocol versioning from clientversion
- 20a5f61
Don’t relay alerts to peers before version negotiation
- b4ee0bd
Introduce preferred download peers
- 845c86d
Do not use third party services for IP detection
- 12a49ca
Limit the number of new addressses to accumulate
- 35e408f
Regard connection failures as attempt for addrman
- a3a7317
Introduce 10 minute block download timeout
- 3022e7d
Require sufficent priority for relay of free transactions
- 58fda4d
Update seed IPs, based on bitcoin.sipa.be crawler data
- 18021d0
Remove bitnodes.io from dnsseeds.
Validation:
- 6fd7ef2
Also switch the (unused) verification code to low-s instead of even-s
- 584a358
Do merkle root and txid duplicates check simultaneously
- 217a5c9
When transaction outputs exceed inputs, show the offending amounts so as to aid debugging
- f74fc9b
Print input index when signature validation fails, to aid debugging
- 6fd59ee
script.h: set_vch() should shift a >32 bit value
- d752ba8
Add SCRIPT_VERIFY_SIGPUSHONLY (BIP62 rule 2) (test only)
- 698c6ab
Add SCRIPT_VERIFY_MINIMALDATA (BIP62 rules 3 and 4) (test only)
- ab9edbd
script: create sane error return codes for script validation and remove logging
- 219a147
script: check ScriptError values in script tests
- 0391423
Discourage NOPs reserved for soft-fork upgrades
- 98b135f
Make STRICTENC invalid pubkeys fail the script rather than the opcode
- 307f7d4
Report script evaluation failures in log and reject messages
- ace39db
consensus: guard against openssl’s new strict DER checks
- 12b7c44
Improve robustness of DER recoding code
- 76ce5c8
fail immediately on an empty signature
Build system:
- f25e3ad
Fix build in OS X 10.9
- 65e8ba4
build: Switch to non-recursive make
- 460b32d
build: fix broken boost chrono check on some platforms
- 9ce0774
build: Fix windows configure when using –with-qt-libdir
- ea96475
build: Add mention of –disable-wallet to bdb48 error messages
- 1dec09b
depends: add shared dependency builder
- c101c76
build: Add –with-utils (bitcoin-cli and bitcoin-tx, default=yes). Help string consistency tweaks. Target sanity check fix
- e432a5f
build: add option for reducing exports (v2)
- 6134b43
Fixing condition ‘sabotaging’ MSVC build
- af0bd5e
osx: fix signing to make Gatekeeper happy (again)
- a7d1f03
build: fix dynamic boost check when –with-boost= is used
- d5fd094
build: fix qt test build when libprotobuf is in a non-standard path
- 2cf5f16
Add libbitcoinconsensus library
- 914868a
build: add a deterministic dmg signer
- 2d375fe
depends: bump openssl to 1.0.1k
- b7a4ecc
Build: Only check for boost when building code that requires it
Wallet:
- b33d1f5
Use fee/priority estimates in wallet CreateTransaction
- 4b7b1bb
Sanity checks for estimates
- c898846
Add support for watch-only addresses
- d5087d1
Use script matching rather than destination matching for watch-only
- d88af56
Fee fixes
- a35b55b
Dont run full check every time we decrypt wallet
- 3a7c348
Fix make_change to not create half-satoshis
- f606bb9
fix a possible memory leak in CWalletDB::Recover
- 870da77
fix possible memory leaks in CWallet::EncryptWallet
- ccca27a
Watch-only fixes
- 9b1627d
[Wallet] Reduce minTxFee for transaction creation to 1000 satoshis
- a53fd41
Deterministic signing
- 15ad0b5
Apply AreSane() checks to the fees from the network
- 11855c1
Enforce minRelayTxFee on wallet created tx and add a maxtxfee option
GUI:
- c21c74b
osx: Fix missing dock menu with qt5
- b90711c
Fix Transaction details shows wrong To:
- 516053c
Make links in ‘About Bitcoin Core’ clickable
- bdc83e8
Ensure payment request network matches client network
- 65f78a1
Add GUI view of peer information
- 06a91d9
VerifyDB progress reporting
- fe6bff2
Add BerkeleyDB version info to RPCConsole
- b917555
PeerTableModel: Fix potential deadlock. #4296
- dff0e3b
Improve rpc console history behavior
- 95a9383
Remove CENT-fee-rule from coin control completely
- 56b07d2
Allow setting listen via GUI
- d95ba75
Log messages with type>QtDebugMsg as non-debug
- 8969828
New status bar Unit Display Control and related changes
- 674c070
seed OpenSSL PNRG with Windows event data
- 509f926
Payment request parsing on startup now only changes network if a valid network name is specified
- acd432b
Prevent balloon-spam after rescan
- 7007402
Implement SI-style (thin space) thoudands separator
- 91cce17
Use fixed-point arithmetic in amount spinbox
- bdba2dd
Remove an obscure option no-one cares about
- bd0aa10
Replace the temporary file hack currently used to change Bitcoin-Qt’s dock icon (OS X) with a buffer-based solution
- 94e1b9e
Re-work overviewpage UI
- 8bfdc9a
Better looking trayicon
- b197bf3
disable tray interactions when client model set to 0
- 1c5f0af
Add column Watch-only to transactions list
- 21f139b
Fix tablet crash. closes #4854
- e84843c
Broken addresses on command line no longer trigger testnet
- a49f11d
Change splash screen to normal window
- 1f9be98
Disable App Nap on OSX 10.9+
- 27c3e91
Add proxy to options overridden if necessary
- 4bd1185
Allow “emergency” shutdown during startup
- d52f072
Don’t show wallet options in the preferences menu when running with -disablewallet
- 6093aa1
Qt: QProgressBar CPU-Issue workaround
- 0ed9675
[Wallet] Add global boolean whether to send free transactions (default=true)
- ed3e5e4
[Wallet] Add global boolean whether to pay at least the custom fee (default=true)
- e7876b2
[Wallet] Prevent user from paying a non-sense fee
- c1c9d5b
Add Smartfee to GUI
- e0a25c5
Make askpassphrase dialog behave more sanely
- 94b362d
On close of splashscreen interrupt verifyDB
- b790d13
English translation update
- 8543b0d
Correct tooltip on address book page
Tests:
- b41e594
Fix script test handling of empty scripts
- d3a33fc
Test CHECKMULTISIG with m == 0 and n == 0
- 29c1749
Let tx (in)valid tests use any SCRIPT_VERIFY flag
- 6380180
Add rejection of non-null CHECKMULTISIG dummy values
- 21bf3d2
Add tests for BoostAsioToCNetAddr
- b5ad5e7
Add Python test for -rpcbind and -rpcallowip
- 9ec0306
Add CODESEPARATOR/FindAndDelete() tests
- 75ebced
Added many rpc wallet tests
- 0193fb8
Allow multiple regression tests to run at once
- 92a6220
Hook up sanity checks
- 3820e01
Extend and move all crypto tests to crypto_tests.cpp
- 3f9a019
added list/get received by address/ account tests
- a90689f
Remove timing-based signature cache unit test
- 236982c
Add skiplist unit tests
- f4b00be
Add CChain::GetLocator() unit test
- b45a6e8
Add test for getblocktemplate longpolling
- cdf305e
Set -discover=0 in regtest framework
- ed02282
additional test for OP_SIZE in script_valid.json
- 0072d98
script tests: BOOLAND, BOOLOR decode to integer
- 833ff16
script tests: values that overflow to 0 are true
- 4cac5db
script tests: value with trailing 0x00 is true
- 89101c6
script test: test case for 5-byte bools
- d2d9dc0
script tests: add tests for CHECKMULTISIG limits
- d789386
Add “it works” test for bitcoin-tx
- df4d61e
Add bitcoin-tx tests
- aa41ac2
Test IsPushOnly() with invalid push
- 6022b5d
Make script_{valid,invalid}.json
validation flags configurable
- 8138cbe
Add automatic script test generation, and actual checksig tests
- ed27e53
Add coins_tests with a large randomized CCoinViewCache test
- 9df9cf5
Make SCRIPT_VERIFY_STRICTENC compatible with BIP62
- dcb9846
Extend getchaintips RPC test
- 554147a
Ensure MINIMALDATA invalid tests can only fail one way
- dfeec18
Test every numeric-accepting opcode for correct handling of the numeric minimal encoding rule
- 2b62e17
Clearly separate PUSHDATA and numeric argument MINIMALDATA tests
- 16d78bd
Add valid invert of invalid every numeric opcode tests
- f635269
tests: enable alertnotify test for Windows
- 7a41614
tests: allow rpc-tests to get filenames for bitcoind and bitcoin-cli from the environment
- 5122ea7
tests: fix forknotify.py on windows
- fa7f8cd
tests: remove old pull-tester scripts
- 7667850
tests: replace the old (unused since Travis) tests with new rpc test scripts
- f4e0aef
Do signature-s negation inside the tests
- 1837987
Optimize -regtest setgenerate block generation
- 2db4c8a
Fix node ranges in the test framework
- a8b2ce5
regression test only setmocktime RPC call
- daf03e7
RPC tests: create initial chain with specific timestamps
- 8656dbb
Port/fix txnmall.sh regression test
- ca81587
Test the exact order of CHECKMULTISIG sig/pubkey evaluation
- 7357893
Prioritize and display -testsafemode status in UI
- f321d6b
Add key generation/verification to ECC sanity check
- 132ea9b
miner_tests: Disable checkpoints so they don’t fail the subsidy-change test
- bc6cb41
QA RPC tests: Add tests block block proposals
- f67a9ce
Use deterministically generated script tests
- 11d7a7d
[RPC] add rpc-test for http keep-alive (persistent connections)
- 34318d7
RPC-test based on invalidateblock for mempool coinbase spends
- 76ec867
Use actually valid transactions for script tests
- c8589bf
Add actual signature tests
- e2677d7
Fix smartfees test for change to relay policy
- 263b65e
tests: run sanity checks in tests too
Miscellaneous:
- 122549f
Fix incorrect checkpoint data for testnet3
- 5bd02cf
Log used config file to debug.log on startup
- 68ba85f
Updated Debian example bitcoin.conf with config from wiki + removed some cruft and updated comments
- e5ee8f0
Remove -beta suffix
- 38405ac
Add comment regarding experimental-use service bits
- be873f6
Issue warning if collecting RandSeed data failed
- 8ae973c
Allocate more space if necessary in RandSeedAddPerfMon
- 675bcd5
Correct comment for 15-of-15 p2sh script size
- fda3fed
libsecp256k1 integration
- 2e36866
Show nodeid instead of addresses in log (for anonymity) unless otherwise requested
- cd01a5e
Enable paranoid corruption checks in LevelDB >= 1.16
- 9365937
Add comment about never updating nTimeOffset past 199 samples
- 403c1bf
contrib: remove getwork-based pyminer (as getwork API call has been removed)
- 0c3e101
contrib: Added systemd .service file in order to help distributions integrate bitcoind
- 0a0878d
doc: Add new DNSseed policy
- 2887bff
Update coding style and add .clang-format
- 5cbda4f
Changed LevelDB cursors to use scoped pointers to ensure destruction when going out of scope
- b4a72a7
contrib/linearize: split output files based on new-timestamp-year or max-file-size
- e982b57
Use explicit fflush() instead of setvbuf()
- 234bfbf
contrib: Add init scripts and docs for Upstart and OpenRC
- 01c2807
Add warning about the merkle-tree algorithm duplicate txid flaw
- d6712db
Also create pid file in non-daemon mode
- 772ab0e
contrib: use batched JSON-RPC in linarize-hashes (optimization)
- 7ab4358
Update bash-completion for v0.10
- 6e6a36c
contrib: show pull # in prompt for github-merge script
- 5b9f842
Upgrade leveldb to 1.18, make chainstate databases compatible between ARM and x86 (issue #2293)
- 4e7c219
Catch UTXO set read errors and shutdown
- 867c600
Catch LevelDB errors during flush
- 06ca065
Fix CScriptID(const CScript& in) in empty script case
Credits
Thanks to everyone who contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.10.1 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.10.1/
This is a new minor version release, bringing bug fixes and translation
updates. It is recommended to upgrade to this version.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility.
Notable changes
This is a minor release and hence there are no notable changes.
For the notable changes in 0.10, refer to the release notes for the
0.10.0 release at https://github.com/bitcoin/bitcoin/blob/v0.10.0/doc/release-notes.md
0.10.1 Change log
Detailed release notes follow. This overview includes changes that affect external
behavior, not code moves, refactors or string updates.
RPC:
- 7f502be
fix crash: createmultisig and addmultisigaddress
- eae305f
Fix missing lock in submitblock
Block (database) and transaction handling:
- 1d2cdd2
Fix InvalidateBlock to add chainActive.Tip to setBlockIndexCandidates
- c91c660
fix InvalidateBlock to repopulate setBlockIndexCandidates
- 002c8a2
fix possible block db breakage during re-index
- a1f425b
Add (optional) consistency check for the block chain data structures
- 1c62e84
Keep mempool consistent during block-reorgs
- 57d1f46
Fix CheckBlockIndex for reindex
- bac6fca
Set nSequenceId when a block is fully linked
P2P protocol and network code:
- 78f64ef
don’t trickle for whitelisted nodes
- ca301bf
Reduce fingerprinting through timestamps in ‘addr’ messages.
- 200f293
Ignore getaddr messages on Outbound connections.
- d5d8998
Limit message sizes before transfer
- aeb9279
Better fingerprinting protection for non-main-chain getdatas.
- cf0218f
Make addrman’s bucket placement deterministic (countermeasure 1 against eclipse attacks, see http://cs-people.bu.edu/heilman/eclipse/)
- 0c6f334
Always use a 50% chance to choose between tried and new entries (countermeasure 2 against eclipse attacks)
- 214154e
Do not bias outgoing connections towards fresh addresses (countermeasure 2 against eclipse attacks)
- aa587d4
Scale up addrman (countermeasure 6 against eclipse attacks)
- 139cd81
Cap nAttempts penalty at 8 and switch to pow instead of a division loop
Validation:
- d148f62
Acquire CCheckQueue’s lock to avoid race condition
Build system:
- 8752b5c
0.10 fix for crashes on OSX 10.6
Wallet:
- N/A
GUI:
- 2c08406
some mac specifiy cleanup (memory handling, unnecessary code)
- 81145a6
fix OSX dock icon window reopening
- 786cf72
fix a issue where “command line options”-action overwrite “Preference”-action (on OSX)
Tests:
- 1117378
add RPC test for InvalidateBlock
Miscellaneous:
- c9e022b
Initialization: set Boost path locale in main thread
- 23126a0
Sanitize command strings before logging them.
- 323de27
Initialization: setup environment before starting Qt tests
- 7494e09
Initialization: setup environment before starting tests
- df45564
Initialization: set fallback locale as environment variable
Credits
Thanks to everyone who directly contributed to this release:
And all those who contributed additional code review and/or security research:
- 21E14
- Alison Kendler
- Aviv Zohar
- Ethan Heilman
- Evil-Knievel
- fanquake
- Jeff Garzik
- Jonas Nick
- Luke Dashjr
- Patrick Strateman
- Philip Kaufmann
- Sergio Demian Lerner
- Sharon Goldberg
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.10.2 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.10.2/
This is a new minor version release, bringing minor bug fixes and translation
updates. It is recommended to upgrade to this version.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility.
Notable changes
This fixes a serious problem on Windows with data directories that have non-ASCII
characters (https://github.com/bitcoin/bitcoin/issues/6078).
For other platforms there are no notable changes.
For the notable changes in 0.10, refer to the release notes
at https://github.com/bitcoin/bitcoin/blob/v0.10.0/doc/release-notes.md
0.10.2 Change log
Detailed release notes follow. This overview includes changes that affect external
behavior, not code moves, refactors or string updates.
Wallet:
- 824c011
fix boost::get usage with boost 1.58
Miscellaneous:
- da65606
Avoid crash on start in TestBlockValidity with gen=1.
- 424ae66
don’t imbue boost::filesystem::path with locale “C” on windows (fixes #6078)
Credits
Thanks to everyone who directly contributed to this release:
And all those who contributed additional code review and/or security research:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.10.3 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.10.3/
This is a new minor version release, bringing security fixes and translation
updates. It is recommended to upgrade to this version as soon as possible.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility.
Notable changes
Bundled miniupnpc was updated to 1.9.20151008. This fixes a buffer overflow in
the XML parser during initial network discovery.
Details can be found here: http://talosintel.com/reports/TALOS-2015-0035/
This applies to the distributed executables only, not when building from source or
using distribution provided packages.
Additionally, upnp has been disabled by default. This may result in a lower
number of reachable nodes on IPv4, however this prevents future libupnpc
vulnerabilities from being a structural risk to the network
(see https://github.com/bitcoin/bitcoin/pull/6795).
Make the node require the canonical ‘low-s’ encoding for ECDSA signatures when
relaying or mining. This removes a nuisance malleability vector.
Consensus behavior is unchanged.
If widely deployed this change would eliminate the last remaining known vector
for nuisance malleability on SIGHASH_ALL P2PKH transactions. On the down-side
it will block most transactions made by sufficiently out of date software.
Unlike the other avenues to change txids on transactions this
one was randomly violated by all deployed bitcoin software prior to
its discovery. So, while other malleability vectors where made
non-standard as soon as they were discovered, this one has remained
permitted. Even BIP62 did not propose applying this rule to
old version transactions, but conforming implementations have become
much more common since BIP62 was initially written.
Bitcoin Core has produced compatible signatures since a28fb70e in
September 2013, but this didn’t make it into a release until 0.9
in March 2014; Bitcoinj has done so for a similar span of time.
Bitcoinjs and electrum have been more recently updated.
This does not replace the need for BIP62 or similar, as miners can
still cooperate to break transactions. Nor does it replace the
need for wallet software to handle malleability sanely[1]. This
only eliminates the cheap and irritating DOS attack.
[1] On the Malleability of Bitcoin Transactions
Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski, Łukasz Mazurek
http://fc15.ifca.ai/preproceedings/bitcoin/paper_9.pdf
The default for the -minrelaytxfee
setting has been increased from 0.00001
to 0.00005
.
This is necessitated by the current transaction flooding, causing
outrageous memory usage on nodes due to the mempool ballooning. This is a
temporary measure, bridging the time until a dynamic method for determining
this fee is merged (which will be in 0.12).
(see https://github.com/bitcoin/bitcoin/pull/6793, as well as the 0.11.0
release notes, in which this value was suggested)
0.10.3 Change log
Detailed release notes follow. This overview includes changes that affect external
behavior, not code moves, refactors or string updates.
e4a7d51
Fix two problems in CSubnet parsingebd7d8d
Parameter interaction: disable upnp if -proxy setecc96f5
Remove P2SH coinbase flag, no longer interesting181771b
json: fail read_string if string contains trailing garbage09334e0
configure: Detect (and reject) LibreSSL0fd8464
Fix getbalance * 0be64204
Add option -alerts
to opt out of alert system3f55638
doc: update mailing list address7e66e9c
openssl: avoid config file load/race255eced
Updated URL location of netinstall for Debian0739e6e
Test whether created sockets are select()ablef696ea1
[QT] fix thin space word wrap line brake issue743cc9e
Backport bugfixes to 0.101cea6b0
Test LowS in standardness, removes nuisance malleability vector.093d7b5
Update miniupnpc to 1.9.20151008f2778e0
net: Disable upnp by default91ef4d9
Do not store more than 200 timedata samples842c48d
Bump minrelaytxfee defaultCredits
Thanks to everyone who directly contributed to this release:
And all those who contributed additional code review and/or security research:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.10.4 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.10.4/
This is a new minor version release, bringing bug fixes, the BIP65
(CLTV) consensus change, and relay policy preparation for BIP113. It is
recommended to upgrade to this version as soon as possible.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility. There are no
known problems when downgrading from 0.11.x to 0.10.x.
Notable changes since 0.10.3
This release includes several changes related to the BIP65 soft fork
which redefines the existing OP_NOP2 opcode as OP_CHECKLOCKTIMEVERIFY
(CLTV) so that a transaction output can be made unspendable until a
specified point in the future.
This release will only relay and mine transactions spending a CLTV
output if they comply with the BIP65 rules as provided in code.
This release will produce version 4 blocks by default. Please see the
notice to miners below.
Once 951 out of a sequence of 1,001 blocks on the local node’s best block
chain contain version 4 (or higher) blocks, this release will no
longer accept new version 3 blocks and it will only accept version 4
blocks if they comply with the BIP65 rules for CLTV.
For more information about the soft-forking change, please see
https://github.com/bitcoin/bitcoin/pull/6351
Graphs showing the progress towards block version 4 adoption may be
found at the URLs below:
Block versions over the last 50,000 blocks as progress towards BIP65
consensus enforcement: http://bitcoin.sipa.be/ver-50k.png
Block versions over the last 2,000 blocks showing the days to the
earliest possible BIP65 consensus-enforced block: http://bitcoin.sipa.be/ver-2k.png
Notice to miners: Bitcoin Core’s block templates are now for
version 4 blocks only, and any mining software relying on its
getblocktemplate must be updated in parallel to use libblkmaker either
version FIXME or any version from FIXME onward.
If you are solo mining, this will affect you the moment you upgrade
Bitcoin Core, which must be done prior to BIP65 achieving its 951/1001
status.
If you are mining with the stratum mining protocol: this does not
affect you.
If you are mining with the getblocktemplate protocol to a pool: this
will affect you at the pool operator’s discretion, which must be no
later than BIP65 achieving its 951/1001 status.
Several Windows users reported that they often need to reindex the
entire blockchain after an unclean shutdown of Bitcoin Core on Windows
(or an unclean shutdown of Windows itself). Although unclean shutdowns
remain unsafe, this release no longer relies on memory-mapped files for
the UTXO database, which significantly reduced the frequency of unclean
shutdowns leading to required reindexes during testing.
For more information, see: https://github.com/bitcoin/bitcoin/pull/6917
Other fixes for database corruption on Windows are expected in the
next major release.
0.10.4 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
8b3311f
alias -h for –help97546fc
Change URLs to https in debian/control38671bf
Update debian/changelog and slight tweak to debian/control256321e
Correct spelling mistakes in doc foldereae0350
Clarification of unit test build instructions90897ab
Update bluematt-key, the old one is long-since revokeda2f2fb6
build: disable -Wself-assigncf67d8b
Bugfix: Allow mining on top of old tip blocks for testnet (fixes testnet-in-a-box use case)b3964e3
Drop “with minimal dependencies” from description43c2789
Split bitcoin-tx into its own packagedfe0d4d
Include bitcoin-tx binary on Debian/Ubuntu612efe8
[Qt] Raise debug window when requested3ad96bd
Fix locking in GetTransaction9c81005
Fix spelling of Qt94b67e5
Update LevelDB5dc72f8
CLTV: Add more tests to improve coverage6a1343b
Add RPC tests for the CHECKLOCKTIMEVERIFY (BIP65) soft-fork4137248
Add CHECKLOCKTIMEVERIFY (BIP65) soft-fork logic0e01d0f
Enable CHECKLOCKTIMEVERIFY as a standard script verify flag6d01325
Replace NOP2 with CHECKLOCKTIMEVERIFY (BIP65)750d54f
Move LOCKTIME_THRESHOLD to src/script/script.h6897468
Make CScriptNum() take nMaxNumSize as an argument5297194
Set TCP_NODELAY on P2P socketsfb818b6
Bring historical release notes up to date0b3fd07
build: make sure OpenSSL heeds noexecstackCredits
Thanks to everyone who directly contributed to this release:
And those who contributed additional code review and/or security research.
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.11.0 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.11.0/
This is a new major version release, bringing both new features and
bug fixes.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility. There are no
known problems when downgrading from 0.11.x to 0.10.x.
Important information
At the time of this release, the P2P network is being flooded with low-fee
transactions. This causes a ballooning of the mempool size.
If this growth of the mempool causes problematic memory use on your node, it is
possible to change a few configuration options to work around this. The growth
of the mempool can be monitored with the RPC command getmempoolinfo
.
One is to increase the minimum transaction relay fee minrelaytxfee
, which
defaults to 0.00001. This will cause transactions with fewer BTC/kB fee to be
rejected, and thus fewer transactions entering the mempool.
The other is to restrict the relaying of free transactions with
limitfreerelay
. This option sets the number of kB/minute at which
free transactions (with enough priority) will be accepted. It defaults to 15.
Reducing this number reduces the speed at which the mempool can grow due
to free transactions.
For example, add the following to bitcoin.conf
:
minrelaytxfee=0.00005
limitfreerelay=5
More robust solutions are being worked on for a follow-up release.
Notable changes
This release supports running a fully validating node without maintaining a copy
of the raw block and undo data on disk. To recap, there are four types of data
related to the blockchain in the bitcoin system: the raw blocks as received over
the network (blk???.dat), the undo data (rev???.dat), the block index and the
UTXO set (both LevelDB databases). The databases are built from the raw data.
Block pruning allows Bitcoin Core to delete the raw block and undo data once
it’s been validated and used to build the databases. At that point, the raw data
is used only to relay blocks to other nodes, to handle reorganizations, to look
up old transactions (if -txindex is enabled or via the RPC/REST interfaces), or
for rescanning the wallet. The block index continues to hold the metadata about
all blocks in the blockchain.
The user specifies how much space to allot for block & undo files. The minimum
allowed is 550MB. Note that this is in addition to whatever is required for the
block index and UTXO databases. The minimum was chosen so that Bitcoin Core will
be able to maintain at least 288 blocks on disk (two days worth of blocks at 10
minutes per block). In rare instances it is possible that the amount of space
used will exceed the pruning target in order to keep the required last 288
blocks on disk.
Block pruning works during initial sync in the same way as during steady state,
by deleting block files “as you go” whenever disk space is allocated. Thus, if
the user specifies 550MB, once that level is reached the program will begin
deleting the oldest block and undo files, while continuing to download the
blockchain.
For now, block pruning disables block relay. In the future, nodes with block
pruning will at a minimum relay “new” blocks, meaning blocks that extend their
active chain.
Block pruning is currently incompatible with running a wallet due to the fact
that block data is used for rescanning the wallet and importing keys or
addresses (which require a rescan.) However, running the wallet with block
pruning will be supported in the near future, subject to those limitations.
Block pruning is also incompatible with -txindex and will automatically disable
it.
Once you have pruned blocks, going back to unpruned state requires
re-downloading the entire blockchain. To do this, re-start the node with
-reindex. Note also that any problem that would cause a user to reindex (e.g.,
disk corruption) will cause a pruned node to redownload the entire blockchain.
Finally, note that when a pruned node reindexes, it will delete any blk???.dat
and rev???.dat files in the data directory prior to restarting the download.
To enable block pruning on the command line:
-prune=N
: where N is the number of MB to allot for raw block & undo data.Modified RPC calls:
getblockchaininfo
now includes whether we are in pruned mode or not.getblock
will check if the block’s data has been pruned and if so, return an getrawtransaction
will no longer be able to locate a transaction that has a Pruning is disabled by default.
Experimental support for big-endian CPU architectures was added in this
release. All little-endian specific code was replaced with endian-neutral
constructs. This has been tested on at least MIPS and PPC hosts. The build
system will automatically detect the endianness of the target.
There have been many changes in this release to reduce the default memory usage
of a node, among which:
-dbcache
This release improves the algorithm used for fee estimation. Previously, -1
was returned when there was insufficient data to give an estimate. Now, -1
will also be returned when there is no fee or priority high enough for the
desired confirmation target. In those cases, it can help to ask for an estimate
for a higher target number of blocks. It is not uncommon for there to be no
fee or priority high enough to be reliably (85%) included in the next block and
for this reason, the default for -txconfirmtarget=n
has changed from 1 to 2.
This release adds an option -walletbroadcast=0
to prevent automatic
transaction broadcast and rebroadcast (#5951). This option allows separating
transaction submission from the node functionality.
Making use of this, third-party scripts can be written to take care of
transaction (re)broadcast:
gettransaction
(NOT getrawtransaction
). The hex
field of the result will contain the raw One such application is selective Tor usage, where the node runs on the normal
internet but transactions are broadcasted over Tor.
For an example script see bitcoin-submittx.
This release adds functionality to create a new circuit for every peer
connection, when the software is used with Tor. The new option,
-proxyrandomize
, is on by default.
When enabled, every outgoing connection will (potentially) go through a
different exit node. That significantly reduces the chance to get unlucky and
pick a single exit node that is either malicious, or widely banned from the P2P
network. This improves connection reliability as well as privacy, especially
for the initial connections.
Important note: If a non-Tor SOCKS5 proxy is configured that supports
authentication, but doesn’t require it, this change may cause that proxy to reject
connections. A user and password is sent where they weren’t before. This setup
is exceedingly rare, but in this case -proxyrandomize=0
can be passed to
disable the behavior.
0.11.0 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
5f7279a
signrawtransaction: validate private key103f66b
Add /rest/headers//.95ecc0a
Add scriptPubKey field to validateaddress RPC callc986972
Add time offset into getpeerinfo output84eba47
Add unconfirmed and immature balances to getwalletinfo40e96a3
Get rid of the internal miner’s hashmeter87ecfb0
Push down RPC locks1c4e3f9
fix getblocktemplate lock issue5d901d8
Fix getblocktemplate_proposals test by mining one blockd48ce48
Add /rest/chaininfos4c4f1b4
Push down RPC reqWallet flag585b5db
Show zero value txouts in listunspent6364408
Add RPC call gettxoutproof
to generate and verify merkle blocks16341cc
Report missing inputs in sendrawtransaction40f5e8d
show script verification errors in signrawtransaction result1fd2d39
getutxos REST command (based on Bip64)42746b0
[REST] remove json input for getutxos, limit to query max. 15 outpoints5901596
json: fail read_string if string contains trailing garbagea353ad4
Add option -allowselfsignedrootcertificate
to allow self signed root certs (for testing payment requests)3e8a1f2
Add a consistency check -checkblockindex
for the block chain data structures7efc9cf
Make it possible to disable wallet transaction broadcast (using -walletbroadcast=0
)b6ea3bc
privacy: Stream isolation for Tor (on by default, use -proxyrandomize=0
to disable)c271304
Add autoprune functionality (-prune=
)0bcf04f
Parameter interaction: disable upnp if -proxy set4d9c7fe
Add option -alerts
to opt out of alert systemdcc1304
Do all block index writes in a batch203632d
Check against MANDATORY flags prior to accepting to mempool4406c3e
Reject headers that build on an invalid parent055f3ae
Apply AreSane() checks to the fees from the network40d65eb
Preemptively catch a few potential bugsf55c5e9
Implement test for merkle tree malleability in CPartialMerkleTreea89b837
clarify obscure uses of EvalScript()8e4578a
Reject non-final txs even in testnet/regtest6af674e
Change hardcoded character constants to descriptive named constants for db keysfcf646c
Change the default maximum OP_RETURN size to 80 bytes175d86e
Add more information to errors in ReadBlockFromDiskb36f1ce
Use GetAncestor to compute new targeta0bfc69
Add additional block index consistency checks7e0e7f8
autoprune minor post-merge improvements2cc1372
New fee estimation code6fb90d8
Implement accurate UTXO cache size accounting2a82298
Bug fix for clearing fCheckForPruninge9af4e6
Alert if it is very likely we are getting a bad chainc00ae64
Remove P2SH coinbase flag, no longer interesting37b4e42
Fix removing of orphan transactions6cb70ca
Prune: Support noncontiguous block filesfce474c
Use best header chain timestamps to detect partitioninga587606
Advance pindexLastCommonBlock for blocks in chainActive844ace9
Prevent DOS attacks on in-flight data structures32a8b6a
Sanitize command strings before logging themdd4ffce
Add correct bool combiner for net signals8e4fd0c
Add a NODE_GETUTXO service bit and document NODE_NETWORKb9311fb
Move nLastTry from CAddress to CAddrInfo5048465
Change download logic to allow calling getdata on inbound peers18d2832
replace absolute sleep with conditional wait7bf5d5e
Use equivalent PoW for non-main-chain requestsf026ab6
chainparams: use SeedSpec6’s rather than CAddress’s for fixed seeds31c0bf1
Add jonasschnellis dns seeder9f7809f
Reduce download timeouts as blocks arriveb4bbad1
Ignore getheaders requests when not synced304892f
Be stricter in processing unrequested blocks41bbc85
Hardcoded seeds update June 201548e1765
Implement BIP62 rule 641e6e4c
Implement BIP66c76c9d2
Add mips, mipsel and aarch64 to depends platformscf87536
libbitcoinconsensus: Add pkg-config supported11d53
Fix ‘make distcheck’a99ef7d
Build winshutdownmonitor.cpp on Windows onlye8a6639
Osx toolchain updateab64022
osx: bump build sdk to 10.923ef5b7
depends: latest config.guess and config.sub31dedb4
Fixes when compiling in c++11 modef8e68f7
release: use static libstdc++ and disable reduced exports by default7c3fbc3
Big endian supportc7abfa5
Add script to verify all merge commits are signed7abbb7e
qt: disable qt tests when one of the checks for the gui fails0401aa2
configure: Detect (and reject) LibreSSL95aca44
gitian: Use the new bitcoin-detached-sigs git repo for OSX signaturesef1d506
Fix scheduler build with some boost versions.25c2216
depends: fix Boost 1.55 build on GCC 5b711599
gitian: add a gitian-win-signer descriptor8ea6d37
Fix build on FreeBSDdaf956b
fix crash on shutdown when e.g. changing -txindex and abort actionbdf0d94
Gitian windows signing normalization811c71d
Discourage fee sniping with nLockTimed01bcc4
Enforce minRelayTxFee on wallet created tx and add a maxtxfee option9a5cabf
Add RandAddSeedPerfmon to MakeNewKey8204e19
Do not flush the wallet in AddToWalletIfInvolvingMe(..)93b7544
Clean up wallet encryption codedf5c246
Subtract fee from amount6c97fd1
wallet: fix boost::get usage with boost 1.5823c998d
Sort pending wallet transactions before reaccepting26e08a1
Change default nTxConfirmTarget to 275a4d51
Fix off-by-one error w/ nLockTime in the walletc9fd907
Fix getbalance * 0f3af0c8
New iconsbb3c75b
HiDPI (retina) support for splash screen73cbf0a
The RPC Console should be a QWidget to make window more independent851dfc7
Light blue icon color for regtesta39aa74
New icon for the debug windowe515309
Adopt style colour for button icons70477a0
On close of splashscreen interrupt verifyDB83be8fd
Make the command-line-args dialog betterc5380a9
Elaborate on signverify message dialog warningd1aa3c6
Optimize PNG filese0cd2f5
Use text-color icons for system tray Send/Receive menu entries848f55d
Coin Control: Use U+2248 “ALMOST EQUAL TO” rather than a simple tildeab0d798
Fix icon sizes and column widthc7b22aa
add new osx dmg background picture7823598
Payment request expiration bug fix9c4a5a5
Allow unit changes for read-only BitcoinAmountField0f44672
Add bitcoin logo to about screena956586
Prevent amount overflow problem with payment requests215475a
Don’t save geometry for options and about/help windowd26f0b2
Honor current network when creating autostart linkf238add
Startup script for centos, with documentation5bd3a92
Fix a static qt5 crash when using certain versions of libxcbbb56781
Fix rpc console font size to flexible metricsbc8535b
Payment request / server work - part 2180c164
Remove movable option for toolbar0d862c2
Overviewpage: make sure warning icons gets colored2f2d337
Add ability to run single test manually to RPC tests886eb57
Test unexecuted OP_CODESEPARATOR565b300
Additional rpc tests37b185c
Fix spurious windows test failures after 012598880c2eda47b
Fix smartfees test for change to relay policye3f5727
Fix zapwallettxes test30a5b5f
Prepare paymentservertests for new unit testse3a3cd7
Fix usage of NegateSignatureS in script_testsee9f2bf
Add unit tests for next difficulty calculationsd7989c0
Travis: run unit tests in different orderscdae53e
Reinitialize state in between individual unit tests.164d7b6
tests: add a BasicTestingSetup and apply to all tests446bb70
Regression test for ResendWalletTransactionscf7adad
fix and enable bip32 unit test734f80a
tests: Error when setgenerate is used on regtest948beaf
Correct the PUSHDATA4 minimal encoding test in script_invalid.jsone08886d
Stop nodes after RPC tests, even with –nocleanupdf1609f
Add additional script edge condition testsda38dc6
Python P2P testing 9ef00c3
Add multisig rpc testsfec5c0e
Add more script edge condition tests84857e8
Add missing CAutoFile::IsNull() check in mainec20fd7
Replace uint256/uint160 with opaque blobs where possible5f04d1d
OS X 10.10: LSSharedFileListItemResolve() is deprecatedbeff11a
Get rid of DetectShutdownThread9bd8c9b
Add fanquake PGP key47a79bb
No longer check osx compatibility in RenameThread07f4386
openssl: abstract out OPENSSL_cleanse8b298ca
Add list of implemented BIPs46bfbe7
Add bitcoin-cli man page86eb461
keys: remove libsecp256k1 verification until it’s actually supportedd734d87
Help messages correctly formatted (79 chars)7077fe6
BUGFIX: Stack around the variable ‘rv’ was corrupted41259ca
contrib/init/bitcoind.openrc: Compatibility with previous OpenRC init script variables41113e3
Fix locale fallback and guard tests against invalid locale settings7c6bfb1
Add git-subtree-check.sh script1623f6e
FreeBSD, OpenBSD thread renamingb46e7c2
Several changes to mruset3e2559c
Show an init message while activating best chain351f73e
Clean up parsing of bool command line argsb4c219b
Lightweight task scheduler30dc3c1
[OSX] rename Bitcoin-Qt.app to Bitcoin-Core.appb3024f0
contrib/linearize: Support linearization of testnet blocks7708fcd
Update Windows resource files (and add one for bitcoin-tx)e1412d3
Catch errors on datadir lock and pidfile delete182686c
Fix two problems in CSubnet parsingdf992b9
doc: add translation strings policydfdb6dd
build: disable optional use of gmp in internal secp256k1 build94cd705
Remove translation for -help-debug options3902c15
Remove berkeley-db4 workaround in MacOSX build docs3f8fcc9
doc: update mailing list addressCredits
Thanks to everyone who directly contributed to this release:
And all those who contributed additional code review and/or security research:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.11.1 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.11.1/
This is a new minor version release, bringing security fixes. It is recommended
to upgrade to this version as soon as possible.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility. There are no
known problems when downgrading from 0.11.x to 0.10.x.
Notable changes
Bundled miniupnpc was updated to 1.9.20151008. This fixes a buffer overflow in
the XML parser during initial network discovery.
Details can be found here: http://talosintel.com/reports/TALOS-2015-0035/
This applies to the distributed executables only, not when building from source or
using distribution provided packages.
Additionally, upnp has been disabled by default. This may result in a lower
number of reachable nodes on IPv4, however this prevents future libupnpc
vulnerabilities from being a structural risk to the network
(see https://github.com/bitcoin/bitcoin/pull/6795).
Make the node require the canonical ‘low-s’ encoding for ECDSA signatures when
relaying or mining. This removes a nuisance malleability vector.
Consensus behavior is unchanged.
If widely deployed this change would eliminate the last remaining known vector
for nuisance malleability on SIGHASH_ALL P2PKH transactions. On the down-side
it will block most transactions made by sufficiently out of date software.
Unlike the other avenues to change txids on transactions this
one was randomly violated by all deployed bitcoin software prior to
its discovery. So, while other malleability vectors where made
non-standard as soon as they were discovered, this one has remained
permitted. Even BIP62 did not propose applying this rule to
old version transactions, but conforming implementations have become
much more common since BIP62 was initially written.
Bitcoin Core has produced compatible signatures since a28fb70e in
September 2013, but this didn’t make it into a release until 0.9
in March 2014; Bitcoinj has done so for a similar span of time.
Bitcoinjs and electrum have been more recently updated.
This does not replace the need for BIP62 or similar, as miners can
still cooperate to break transactions. Nor does it replace the
need for wallet software to handle malleability sanely[1]. This
only eliminates the cheap and irritating DOS attack.
[1] On the Malleability of Bitcoin Transactions
Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski, Łukasz Mazurek
http://fc15.ifca.ai/preproceedings/bitcoin/paper_9.pdf
The default for the -minrelaytxfee
setting has been increased from 0.00001
to 0.00005
.
This is necessitated by the current transaction flooding, causing
outrageous memory usage on nodes due to the mempool ballooning. This is a
temporary measure, bridging the time until a dynamic method for determining
this fee is merged (which will be in 0.12).
(see https://github.com/bitcoin/bitcoin/pull/6793, as well as the 0.11
release notes, in which this value was suggested)
0.11.1 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
2531438
openssl: avoid config file load/race980f820
Updated URL location of netinstall for Debian8e5a969
qt: Force TLS1.0+ for SSL connections92401c2
Depends: bump to qt 5.593b606a
Be even stricter in processing unrequested blocks100ac4e
libbitcoinconsensus: avoid a crash in multi-threaded environments649f5d9
Do not store more than 200 timedata samples.834e299
[QT] fix thin space word wrap line break issue1cd7952
Backport bugfixes to 0.115ed8d0b
Recent rejects backport to v0.1171cc9d9
Test LowS in standardness, removes nuisance malleability vector.b4ad73f
Update miniupnpc to 1.9.20151008b4dc33e
Backport to v0.11: In (strCommand == “tx”), return if AlreadyHave()0095b9a
Test whether created sockets are select()able4dbcec0
net: Disable upnp by defaulte7bcc4a
Bump minrelaytxfee defaultCredits
Thanks to everyone who directly contributed to this release:
And those who contributed additional code review and/or security research:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.11.2 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.11.2/
This is a new minor version release, bringing bug fixes, the BIP65
(CLTV) consensus change, and relay policy preparation for BIP113. It is
recommended to upgrade to this version as soon as possible.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility. There are no
known problems when downgrading from 0.11.x to 0.10.x.
Notable changes since 0.11.1
This release includes several changes related to the BIP65 soft fork
which redefines the existing OP_NOP2 opcode as OP_CHECKLOCKTIMEVERIFY
(CLTV) so that a transaction output can be made unspendable until a
specified point in the future.
This release will only relay and mine transactions spending a CLTV
output if they comply with the BIP65 rules as provided in code.
This release will produce version 4 blocks by default. Please see the
notice to miners below.
Once 951 out of a sequence of 1,001 blocks on the local node’s best block
chain contain version 4 (or higher) blocks, this release will no
longer accept new version 3 blocks and it will only accept version 4
blocks if they comply with the BIP65 rules for CLTV.
For more information about the soft-forking change, please see
https://github.com/bitcoin/bitcoin/pull/6351
Graphs showing the progress towards block version 4 adoption may be
found at the URLs below:
Block versions over the last 50,000 blocks as progress towards BIP65
consensus enforcement: http://bitcoin.sipa.be/ver-50k.png
Block versions over the last 2,000 blocks showing the days to the
earliest possible BIP65 consensus-enforced block: http://bitcoin.sipa.be/ver-2k.png
Notice to miners: Bitcoin Core’s block templates are now for
version 4 blocks only, and any mining software relying on its
getblocktemplate must be updated in parallel to use libblkmaker either
version 0.4.3 or any version from 0.5.2 onward.
If you are solo mining, this will affect you the moment you upgrade
Bitcoin Core, which must be done prior to BIP65 achieving its 951/1001
status.
If you are mining with the stratum mining protocol: this does not
affect you.
If you are mining with the getblocktemplate protocol to a pool: this
will affect you at the pool operator’s discretion, which must be no
later than BIP65 achieving its 951/1001 status.
Bitcoin transactions currently may specify a locktime indicating when
they may be added to a valid block. Current consensus rules require
that blocks have a block header time greater than the locktime specified
in any transaction in that block.
Miners get to choose what time they use for their header time, with the
consensus rule being that no node will accept a block whose time is more
than two hours in the future. This creates a incentive for miners to
set their header times to future values in order to include locktimed
transactions which weren’t supposed to be included for up to two more
hours.
The consensus rules also specify that valid blocks may have a header
time greater than that of the median of the 11 previous blocks. This
GetMedianTimePast() time has a key feature we generally associate with
time: it can’t go backwards.
BIP113 specifies a soft fork (not enforced in this release) that
weakens this perverse incentive for individual miners to use a future
time by requiring that valid blocks have a computed GetMedianTimePast()
greater than the locktime specified in any transaction in that block.
Mempool inclusion rules currently require transactions to be valid for
immediate inclusion in a block in order to be accepted into the mempool.
This release begins applying the BIP113 rule to received transactions,
so transaction whose time is greater than the GetMedianTimePast() will
no longer be accepted into the mempool.
Implication for miners: you will begin rejecting transactions that
would not be valid under BIP113, which will prevent you from producing
invalid blocks if/when BIP113 is enforced on the network. Any
transactions which are valid under the current rules but not yet valid
under the BIP113 rules will either be mined by other miners or delayed
until they are valid under BIP113. Note, however, that time-based
locktime transactions are more or less unseen on the network currently.
Implication for users: GetMedianTimePast() always trails behind the
current time, so a transaction locktime set to the present time will be
rejected by nodes running this release until the median time moves
forward. To compensate, subtract one hour (3,600 seconds) from your
locktimes to allow those transactions to be included in mempools at
approximately the expected time.
Several Windows users reported that they often need to reindex the
entire blockchain after an unclean shutdown of Bitcoin Core on Windows
(or an unclean shutdown of Windows itself). Although unclean shutdowns
remain unsafe, this release no longer relies on memory-mapped files for
the UTXO database, which significantly reduced the frequency of unclean
shutdowns leading to required reindexes during testing.
For more information, see: https://github.com/bitcoin/bitcoin/pull/6917
Other fixes for database corruption on Windows are expected in the
next major release.
0.11.2 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
684636b
Make CScriptNum() take nMaxNumSize as an argument4fa7a04
Replace NOP2 with CHECKLOCKTIMEVERIFY (BIP65)6ea5ca4
Enable CHECKLOCKTIMEVERIFY as a standard script verify flag5e82e1c
Add CHECKLOCKTIMEVERIFY (BIP65) soft-fork logicba1da90
Show softfork status in getblockchaininfo6af25b0
Add BIP65 to getblockchaininfo softforks list01878c9
Fix locking in GetTransactionb3eaa30
[Qt] Raise debug window when requested1e672ae
Debian/Ubuntu: Include bitcoin-tx binary2394f4d
Debian/Ubuntu: Split bitcoin-tx into its own package33d6825
Bugfix: Allow mining on top of old tip blocks for testnet21e58b8
build: make sure OpenSSL heeds noexecstackaf6edac
alias -h
for --help
95a5039
Set TCP_NODELAY on P2P sockets.dfe55bd
Do not allow blockfile pruning during reindex.a1d3c6f
Add rules–presently disabled–for using GetMedianTimePast as end point for lock-time calculationsf720c5f
Enable policy enforcing GetMedianTimePast as the end point of lock-time constraints0af5b8e
leveldb: Win32WritableFile without memory mapping4e895b0
Always flush block and undo when switching to new fileCredits
Thanks to everyone who directly contributed to this release:
And those who contributed additional code review and/or security research.
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.12.0 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.12.0/
This is a new major version release, bringing new features and other improvements.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.10.0 and later makes use of headers-first synchronization and
parallel block download (see further), the block files and databases are not
backwards-compatible with pre-0.10 versions of Bitcoin Core or other software:
Blocks will be stored on disk out of order (in the order they are
received, really), which makes it incompatible with some tools or
other programs. Reindexing using earlier versions will also not work
anymore as a result of this.
The block index database will now hold headers for which no block is
stored on disk, which earlier versions won’t support.
If you want to be able to downgrade smoothly, make a backup of your entire data
directory. Without this your node will need start syncing (or importing from
bootstrap.dat) anew afterwards. It is possible that the data from a completely
synchronised 0.10 node may be usable in older versions as-is, but this is not
supported and may break as soon as the older version attempts to reindex.
This does not affect wallet forward or backward compatibility.
Because release 0.12.0 and later will obfuscate the chainstate on every
fresh sync or reindex, the chainstate is not backwards-compatible with
pre-0.12 versions of Bitcoin Core or other software.
If you want to downgrade after you have done a reindex with 0.12.0 or later,
you will need to reindex when you first start Bitcoin Core version 0.11 or
earlier.
Notable changes
ECDSA signatures inside Bitcoin transactions now use validation using
libsecp256k1 instead of OpenSSL.
Depending on the platform, this means a significant speedup for raw signature
validation speed. The advantage is largest on x86_64, where validation is over
five times faster. In practice, this translates to a raw reindexing and new
block validation times that are less than half of what it was before.
Libsecp256k1 has undergone very extensive testing and validation.
A side effect of this change is that libconsensus no longer depends on OpenSSL.
A major part of the outbound traffic is caused by serving historic blocks to
other nodes in initial block download state.
It is now possible to reduce the total upload traffic via the -maxuploadtarget
parameter. This is not a hard limit but a threshold to minimize the outbound
traffic. When the limit is about to be reached, the uploaded data is cut by not
serving historic blocks (blocks older than one week).
Moreover, any SPV peer is disconnected when they request a filtered block.
This option can be specified in MiB per day and is turned off by default
(-maxuploadtarget=0
).
The recommended minimum is 144 * MAX_BLOCK_SIZE (currently 144MB) per day.
Whitelisted peers will never be disconnected, although their traffic counts for
calculating the target.
A more detailed documentation about keeping traffic low can be found in
/doc/reduce-traffic.md.
Between compatible peers, [BIP 130]
(https://github.com/bitcoin/bips/blob/master/bip-0130.mediawiki)
direct headers announcement is used. This means that blocks are advertised by
announcing their headers directly, instead of just announcing the hash. In a
reorganization, all new headers are sent, instead of just the new tip. This
can often prevent an extra roundtrip before the actual block is downloaded.
Previous versions of Bitcoin Core had their mempool limited by checking
a transaction’s fees against the node’s minimum relay fee. There was no
upper bound on the size of the mempool and attackers could send a large
number of transactions paying just slighly more than the default minimum
relay fee to crash nodes with relatively low RAM. A temporary workaround
for previous versions of Bitcoin Core was to raise the default minimum
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
its maximum size, the transaction that (along with in-mempool descendants) has
the lowest total feerate (as a package) will be evicted and the node’s effective
minimum relay feerate will be increased to match this feerate plus the initial
minimum relay feerate. The initial minimum relay feerate is set to
1000 satoshis per kB.
Bitcoin Core 0.12 also introduces new default policy limits on the length and
size of unconfirmed transaction chains that are allowed in the mempool
(generally limiting the length of unconfirmed chains to 25 transactions, with a
total size of 101 KB). These limits can be overriden using command line
arguments; see the extended help (--help -help-debug
) for more information.
It is now possible to replace transactions in the transaction memory pool of
Bitcoin Core 0.12 nodes. Bitcoin Core will only allow replacement of
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).
Transaction replacement can be disabled with a new command line option,
-mempoolreplacement=0
. Transactions signaling replacement under BIP125 will
still be allowed into the mempool in this configuration, but replacements will
be rejected. This option is intended for miners who want to continue the
transaction selection behavior of previous releases.
The -mempoolreplacement
option is not recommended for wallet users seeking
to avoid receipt of unconfirmed opt-in transactions, because this option does
not prevent transactions which are replaceable under BIP 125 from being accepted
(only subsequent replacements, which other nodes on the network that implement
BIP 125 are likely to relay and mine). Wallet users wishing to detect whether
a transaction is subject to replacement under BIP 125 should instead use the
updated RPC calls gettransaction
and listtransactions
, which now have an
additional field in the output indicating if a transaction is replaceable under
BIP125 (“bip125-replaceable”).
Note that the wallet in Bitcoin Core 0.12 does not yet have support for
creating transactions that would be replaceable under BIP 125.
When no -rpcpassword
is specified, the daemon now uses a special ‘cookie’
file for authentication. This file is generated with random content when the
daemon starts, and deleted when it exits. Its contents are used as
authentication token. Read access to this file controls who can access through
RPC. By default it is stored in the data directory but its location can be
overridden with the option -rpccookiefile
.
This is similar to Tor’s CookieAuthentication: see
https://www.torproject.org/docs/tor-manual.html.en
This allows running bitcoind without having to do any manual configuration.
Previously OP_RETURN outputs with a payload were only relayed and mined if they
had a single pushdata. This restriction has been lifted to allow any
combination of data pushes and numeric constant opcodes (OP_1 to OP_16) after
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)
When running in pruned mode, the client will now relay new blocks. When
responding to the getblocks
message, only hashes of blocks that are on disk
and are likely to remain there for some reasonable time window (1 hour) will be
returned (previously all relevant hashes were returned).
Bitcoin Core has a heuristic ‘priority’ based on coin value and age. This
calculation is used for relaying of transactions which do not pay the
minimum relay fee, and can be used as an alternative way of sorting
transactions for mined blocks. Bitcoin Core will relay transactions with
insufficient fees depending on the setting of -limitfreerelay=
(default:
r=15
kB per minute) and -blockprioritysize=
.
In Bitcoin Core 0.12, when mempool limit has been reached a higher minimum
relay fee takes effect to limit memory usage. Transactions which do not meet
this higher effective minimum relay fee will not be relayed or mined even if
they rank highly according to the priority heuristic.
The mining of transactions based on their priority is also now disabled by
default. To re-enable it, simply set -blockprioritysize=
where is the size
in bytes of your blocks to reserve for these transactions. The old default was
50k, so to retain approximately the same policy, you would set
-blockprioritysize=50000
.
Additionally, as a result of computational simplifications, the priority value
used for transactions received with unconfirmed inputs is lower than in prior
versions due to avoiding recomputing the amounts as input transactions confirm.
External miner policy set via the prioritisetransaction
RPC to rank
transactions already in the mempool continues to work as it has previously.
Note, however, that if mining priority transactions is left disabled, the
priority delta will be ignored and only the fee metric will be effective.
This internal automatic prioritization handling is being considered for removal
entirely in Bitcoin Core 0.13, and it is at this time undecided whether the
more accurate priority calculation for chained unconfirmed transactions will be
restored. Community direction on this topic is particularly requested to help
set project priorities.
Starting with Tor version 0.2.7.1 it is possible, through Tor’s control socket
API, to create and destroy ‘ephemeral’ hidden services programmatically.
Bitcoin Core has been updated to make use of this.
This means that if Tor is running (and proper authorization is available),
Bitcoin Core automatically creates a hidden service to listen on, without
manual configuration. Bitcoin Core will also use Tor automatically to connect
to other .onion nodes if the control socket can be successfully opened. This
will positively affect the number of available .onion nodes and their usage.
This new feature is enabled by default if Bitcoin Core is listening, and
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
.
Bitcoind can now (optionally) asynchronously notify clients through a
ZMQ-based PUB socket of the arrival of new transactions and blocks.
This feature requires installation of the ZMQ C API library 4.x and
configuring its use through the command line or configuration file.
Please see docs/zmq.md for details of operation.
Various improvements have been made to how the wallet calculates
transaction fees.
Users can decide to pay a predefined fee rate by setting -paytxfee=
(or settxfee
rpc during runtime). A value of n=0
signals Bitcoin
Core to use floating fees. By default, Bitcoin Core will use floating
fees.
Based on past transaction data, floating fees approximate the fees
required to get into the m
th block from now. This is configurable
with -txconfirmtarget=
(default: 2
).
Sometimes, it is not possible to give good estimates, or an estimate
at all. Therefore, a fallback value can be set with -fallbackfee=
(default: 0.0002
BTC/kB).
At all times, Bitcoin Core will cap fees at -maxtxfee=
(default:
0.10) BTC.
Furthermore, Bitcoin Core will never create transactions paying less than
the current minimum relay fee.
Finally, a user can set the minimum fee rate for all transactions with
-mintxfee=
, which defaults to 1000 satoshis per kB.
The wallet will now report a negative number for confirmations that indicates
how deep in the block chain the conflict is found. For example, if a transaction
A has 5 confirmations and spends the same input as a wallet transaction B, B
will be reported as having -5 confirmations. If another wallet transaction C
spends an output from B, it will also be reported as having -5 confirmations.
To detect conflicts with historical transactions in the chain a one-time
-rescan
may be needed.
Unlike earlier versions, unconfirmed but non-conflicting transactions will never
get a negative confirmation count. They are not treated as spendable unless
they’re coming from ourself (change) and accepted into our local mempool,
however. The new “trusted” field in the listtransactions
RPC output
indicates whether outputs of an unconfirmed transaction are considered
spendable.
Previously, every wallet transaction stored a Merkle branch to prove its
presence in blocks. This wasn’t being used for more than an expensive
sanity check. Since 0.12, these are no longer stored. When loading a
0.12 wallet into an older version, it will automatically rescan to avoid
failed checks.
With 0.12 it is possible to use wallet functionality in pruned mode.
This can reduce the disk usage from currently around 60 GB to
around 2 GB.
However, rescans as well as the RPCs importwallet
, importaddress
,
importprivkey
are disabled.
To enable block pruning set prune=
on the command line or in
bitcoin.conf
, where N
is the number of MiB to allot for
raw block & undo data.
A value of 0 disables pruning. The minimal value above 0 is 550. Your
wallet is as secure with high values as it is with low ones. Higher
values merely ensure that your node will not shut down upon blockchain
reorganizations of more than 2 days - which are unlikely to happen in
practice. In future releases, a higher value may also help the network
as a whole: stored blocks could be served to other nodes.
For further information about pruning, you may also consult the release
notes of v0.11.0.
NODE_BLOOM
service bitSupport for the NODE_BLOOM
service bit, as described in BIP
111, has been
added to the P2P protocol code.
BIP 111 defines a service bit to allow peers to advertise that they support
bloom filters (such as used by SPV clients) explicitly. It also bumps the protocol
version to allow peers to identify old nodes which allow bloom filtering of the
connection despite lacking the new service bit.
In this version, it is only enforced for peers that send protocol versions
>=70011
. For the next major version it is planned that this restriction will be
removed. It is recommended to update SPV clients to check for the NODE_BLOOM
service bit for nodes that report versions newer than 70011.
Command line options are now parsed strictly in the order in which they are
specified. It used to be the case that -X -noX
ends up, unintuitively, with X
set, as -X
had precedence over -noX
. This is no longer the case. Like for
other software, the last specified value for an option will hold.
Monetary amounts can be provided as strings. This means that for example the
argument to sendtoaddress can be “0.0001” instead of 0.0001. This can be an
advantage if a JSON library insists on using a lossy floating point type for
numbers, which would be dangerous for monetary amounts.
The asm
property of each scriptSig now contains the decoded signature hash
type for each signature that provides a valid defined hash type.
OP_NOP2 has been renamed to OP_CHECKLOCKTIMEVERIFY by BIP 65
The following items contain assembly representations of scriptSig signatures
and are affected by this change:
getrawtransaction
decoderawtransaction
decodescript
/rest/tx/
(JSON format)/rest/block/
(JSON format when including extended tx details)bitcoin-tx -json
For example, the scriptSig.asm
property of a transaction input that
previously showed an assembly representation of:
304502207fa7a6d1e0ee81132a269ad84e68d695483745cde8b541e3bf630749894e342a022100c1f7ab20e13e22fb95281a870f3dcf38d782e53023ee313d741ad0cfbc0c509001 400000 OP_NOP2
now shows as:
304502207fa7a6d1e0ee81132a269ad84e68d695483745cde8b541e3bf630749894e342a022100c1f7ab20e13e22fb95281a870f3dcf38d782e53023ee313d741ad0cfbc0c5090[ALL] 400000 OP_CHECKLOCKTIMEVERIFY
Note that the output of the RPC decodescript
did not change because it is
configured specifically to process scriptPubKey and not scriptSig scripts.
SSL support for RPC, previously enabled by the option rpcssl
has been dropped
from both the client and the server. This was done in preparation for removing
the dependency on OpenSSL for the daemon completely.
Trying to use rpcssl
will result in an error:
Error: SSL mode for RPC (-rpcssl) is no longer supported.
If you are one of the few people that relies on this feature, a flexible
migration path is to use stunnel
. This is an utility that can tunnel
arbitrary TCP connections inside SSL. On e.g. Ubuntu it can be installed with:
sudo apt-get install stunnel4
Then, to tunnel a SSL connection on 28332 to a RPC server bound on localhost on port 18332 do:
stunnel -d 28332 -r 127.0.0.1:18332 -p stunnel.pem -P ''
It can also be set up system-wide in inetd style.
Another way to re-attain SSL would be to setup a httpd reverse proxy. This solution
would allow the use of different authentication, loadbalancing, on-the-fly compression and
caching. A sample config for apache2 could look like:
Listen 443
NameVirtualHost *:443
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/server.crt
SSLCertificateKeyFile /etc/apache2/ssl/server.key
ProxyPass http://127.0.0.1:8332/
ProxyPassReverse http://127.0.0.1:8332/
# optional enable digest auth
# AuthType Digest
# ...
# optional bypass bitcoind rpc basic auth
# RequestHeader set Authorization "Basic "
# get the from the shell with: base64 <<< bitcoinrpc:
# Or, balance the load:
# ProxyPass / balancer://balancer_cluster_name
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.
The list of banned peers is now stored on disk rather than in memory.
Restarting bitcoind will no longer clear out the list of banned peers; instead
a new RPC call (clearbanned
) can be used to manually clear the list. The new
setban
RPC call can also be used to manually ban or unban a peer.
0.12.0 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
466f0ea
Convert entire source tree from json_spirit to UniValue (Jonas Schnelli)d38cd47
fix rpcmining/getblocktemplate univalue transition logic error (Jonas Schnelli)643114f
Don’t go through double in AmountFromValue and ValueFromAmount (Wladimir J. van der Laan)ebab5d3
Fix univalue handling of \u0000 characters. (Daniel Kraft)f3d4dbb
Fix getbalance * 0 (Tom Harding)5ebe7db
Add paytxfee
and errors
JSON fields where appropriate (Stephen)754aae5
New RPC command disconnectnode (Alex van der Peet)0abfa8a
Add setban/listbanned RPC commands (Jonas Schnelli)7ecdcd9
rpcban fixes (Jonas Schnelli)5753988
rpc: make gettxoutsettinfo
run lock-free (Wladimir J. van der Laan)247b914
Return all available information via RPC call “validateaddress” (dexX7)c3f0490
UniValue: don’t escape solidus, keep espacing of reverse solidus (Jonas Schnelli)6bcb0a2
Show softfork status in getblockchaininfo (Wladimir J. van der Laan)726e286
Add getblockheader RPC call (Peter Todd)d6db115
Fix null id in RPC response during startup (Forrest Voight)943b322
[REST] JSON support for /rest/headers (Jonas Schnelli)c52e8b3
rpc: Accept scientific notation for monetary amounts in JSON (Wladimir J. van der Laan)fd5dfda
rpc: Implement random-cookie based authentication (Wladimir J. van der Laan)3c923e8
Include pruned state in chaininfo.json (Simon Males)bfd807f
rpc: Avoid unnecessary parsing roundtrip in number formatting, fix locale issue (Wladimir J. van der Laan)240b30e
rpc: Accept strings in AmountFromValue (Wladimir J. van der Laan)6bb2805
Add OP_RETURN support in createrawtransaction RPC call, add tests. (paveljanik)6feeec1
[REST] Add memory pool API (paveljanik)da9beb2
Stop parsing JSON after first finished construct. (Daniel Kraft)9aa9099
libevent-based http server (Wladimir J. van der Laan)bbc2b39
Report minimum ping time in getpeerinfo (Matt Corallo)cd381d7
Simplify logic of REST request suffix parsing. (Daniel Kraft)5e21388
libevent http fixes (Wladimir J. van der Laan)48efbdb
show scriptSig signature hash types in transaction decodes. fixes #3166 (mruddy)1a9f19a
Make HTTP server shutdown more graceful (Wladimir J. van der Laan)0fbfc51
http: Restrict maximum size of http + headers (Wladimir J. van der Laan)bf7c195
[RPC] Add optional locktime to createrawtransaction (Tom Harding)26f5b34
rpc: Add maxmempool and effective min fee to getmempoolinfo (Wladimir J. van der Laan)92701b3
Fix crash in validateaddress with -disablewallet (Wladimir J. van der Laan)755b4ba
Expose GUI labels in RPC as comments (Luke-Jr)dbd2c13
http: speed up shutdown (Wladimir J. van der Laan)36baa9f
Remove LOCK(cs_main) from decodescript (Peter Todd)972bf9c
add (max)uploadtarget infos to getnettotals RPC help (Jonas Schnelli)31de241
Add mediantime to getblockchaininfo (Peter Todd)f91e29f
http: add Boost 1.49 compatibility (Wladimir J. van der Laan)be281d8
[Net]Add -enforcenodebloom option (Patrick Strateman)438ee59
RPC: Added additional config option for multiple RPC users. (Gregory Sanders)c143c49
[RPC] Add transaction size to JSON output (Nikita Zhavoronkov)9afbd96
Change default block priority size to 0 (Alex Morcos)c0c08c7
rpc: Don’t translate warning messages (Wladimir J. van der Laan)fd4bd50
Add RPC call abandontransaction (Alex Morcos)e25b158
RPC: indicate which transactions are replaceable (Suhas Daftuar)b2f2b85
rpc: Add WWW-Authenticate header to 401 response (Wladimir J. van der Laan)9cb31e6
net.h fix spelling: misbeha{b,v}ing (Matt)8d05ec7
Allow user to use -debug=1 to enable all debugging (lpescher)4452205
Added -whiteconnections=
option (Josh Lehan)10ac38e
Fix argument parsing oddity with -noX (Wladimir J. van der Laan)c9c017a
Give a better error message if system clock is bad (Casey Rodarmor)c384800
implement uacomment config parameter which can add comments to user agent as per BIP-0014 (Pavol Rusnak)a3babc8
Sanitize uacomment (MarcoFalke)3b2d37c
Changed logging to make -logtimestamps to work also for -printtoconsole (arnuschky)2cd020d
alias -h for -help (Daniel Cousens)7939164
Introduce -maxuploadtarget (Jonas Schnelli)2b62551
Debug: Add option for microsecond precision in debug.log (Suhas Daftuar)e06c14f
Support -checkmempool=N, which runs checks once every N transactions (Pieter Wuille)d482c0a
Make -checkmempool=1 not fail through int32 overflow (Pieter Wuille)b632145
Add -blocksonly option (Patrick Strateman)a344880
0.12: Backport -bytespersigop option (Luke-Jr)da83ecd
Add option -permitrbf
to set transaction replacement policy (Wladimir J. van der Laan)b16b5bc
Add missing options help (MarcoFalke)c76bfff
Rename permitrbf to mempoolreplacement and provide minimal string-list forward compatibility (Luke-Jr)f00b623
Remove P2SH coinbase flag, no longer interesting (Luke-Jr)9c93ee5
Explicitly set tx.nVersion for the genesis block and mining tests (Mark Friedenbach)3a1d3e8
Fix removing of orphan transactions (Alex Morcos)dd8fe82
Prune: Support noncontiguous block files (Adam Weiss)41076aa
Mempool only CHECKLOCKTIMEVERIFY (BIP65) verification, unparameterized version (Peter Todd)d0a10c1
acceptnonstdtxn option to skip (most) “non-standard transaction” checks, for testnet/regtest only (Luke-Jr)7cdefb9
Implement accurate memory accounting for mempool (Pieter Wuille)24ce77d
Exempt unspendable transaction outputs from dust checks (dexX7)a0625b8
Add absurdly high fee message to validation state (Shaul Kfir)2f746c6
Prevent block.nTime from decreasing (Mark Friedenbach)e545371
Handle no chain tip available in InvalidChainFound() (Ross Nicoll)39ddaeb
Handle leveldb::DestroyDB() errors on wipe failure (Adam Weiss)b0ce450
Mempool package tracking (Suhas Daftuar)82d2aef
Fix mempool packages (Suhas Daftuar)4f44530
use CBlockIndex instead of uint256 for UpdatedBlockTip signal (Jonas Schnelli)4fac576
Obfuscate chainstate (James O’Beirne)9caaf6e
Unobfuscate chainstate data in CCoinsViewDB::GetStats (James O’Beirne)3b20e23
Limit mempool by throwing away the cheapest txn and setting min relay fee to it (Matt Corallo)38369dd
fix locking issue with new mempool limiting (Jonas Schnelli)8f3b3cd
Always clean up manual transaction prioritization (Casey Rodarmor)d0badb9
Fix chainstate serialized_size computation (Pieter Wuille)ff057f4
BIP-113: Mempool-only median time-past as endpoint for lock-time calculations (Mark Friedenbach)3038eb6
Restores mempool only BIP113 enforcement (Gregory Maxwell)de7d459
Benchmark sanity checks and fork checks in ConnectBlock (Matt Corallo)eb6172a
Make sigcache faster, more efficient, larger (Pieter Wuille)38ed190
Policy: Lower default limits for tx chains (Alex Morcos)73fa5e6
ModifyNewCoins saves database lookups (Alex Morcos)05d5918
Alter assumptions in CCoinsViewCache::BatchWrite (Alex Morcos)0e93586
nSequence-based Full-RBF opt-in (Peter Todd)eb77416
Lower bound priority (Alex Morcos)2ef5ffa
[Mempool] Improve removal of invalid transactions after reorgs (Suhas Daftuar)4077ad2
Rewrite CreateNewBlock (Alex Morcos)bdda4d5
Remove UTXO cache entries when the tx they were added for is removed/does not enter mempool (Matt Corallo)12c469b
[Mempool] Fix mempool limiting and replace-by-fee for PrioritiseTransaction (Suhas Daftuar)76de36f
Report non-mandatory script failures correctly (Pieter Wuille)e08b7cb
Mark blocks with too many sigops as failed (Suhas Daftuar)f4b2ce8
Get rid of inaccurate ScriptSigArgsExpected (Pieter Wuille)88a7ead
Ignore getheaders requests when not synced (Suhas Daftuar)9d60602
Be stricter in processing unrequested blocks (Suhas Daftuar)8ccc07c
Use best header chain timestamps to detect partitioning (Gavin Andresen)a903ad7
make CAddrMan::size() return the correct type of size_t (Diapolo)40400d5
Improve proxy initialization (continues #4871) (Wladimir J. van der Laan, Diapolo)66e5465
banlist.dat: store banlist on disk (Jonas Schnelli)1a2de32
Test whether created sockets are select()able (Pieter Wuille)219b916
Keep track of recently rejected transactions with a rolling bloom filter (cont’d) (Peter Todd)70ec975
Fix masking of irrelevant bits in address groups. (Alex Morcos)ea19c2b
Improve addrman Select() performance when buckets are nearly empty (Pieter Wuille)af9305a
add support for miniupnpc api version 14 (Pavel Vasin)69dc5b5
Connection slot exhaustion DoS mitigation (Patrick Strateman)536207f
net: correctly initialize nMinPingUsecTime (Wladimir J. van der Laan)0c27795
Add NODE_BLOOM service bit and bump protocol version (Matt Corallo)999c8be
Relay blocks when pruning (Suhas Daftuar)cf9bb11
In (strCommand == “tx”), return if AlreadyHave() (Tom Harding)2f71b07
Always allow getheaders from whitelisted peers (Wladimir J. van der Laan)bd629d7
net: Automatically create hidden service, listen on Tor (Wladimir J. van der Laan)9ffc687
don’t enforce maxuploadtarget’s disconnect for whitelisted peers (Jonas Schnelli)c322652
Net: Improve blocks only mode. (Patrick Strateman)d6454f6
Connect to Tor hidden services by default (when listening on Tor) (Peter Todd)c894fbb
Fix and improve relay from whitelisted peers (Pieter Wuille)5d5ef3a
Direct headers announcement (rebase of #6494) (Pieter Wuille)1b5118b
Prevent peer flooding inv request queue (redux) (redux) (Gregory Maxwell)6ba25d2
Disconnect on mempool requests from peers when over the upload limit. (Gregory Maxwell)f31955d
Replace setInventoryKnown with a rolling bloom filter (rebase of #7100) (Pieter Wuille)82aff88
Don’t do mempool lookups for “mempool” command without a filter (Matt Corallo)44fef99
net: Fix sent reject messages for blocks and transactions (Wladimir J. van der Laan)8fc174a
net: Add and document network messages in protocol.h (Wladimir J. van der Laan)10b88be
Replace global trickle node with random delays (Pieter Wuille)cb83beb
net: Hardcoded seeds update January 2016 (Wladimir J. van der Laan)e2d9a58
Do not absolutely protect local peers; decide group ties based on time (Gregory Maxwell)86755bc
Add whitelistforcerelay to control forced relaying. [#7099 redux] (Gregory Maxwell)e16f5b4
Ensure headers count is correct (Suhas Daftuar)8d9f0a6
Reduce checkpoints’ effect on consensus. (Pieter Wuille)24f2489
Bugfix: Don’t check the genesis block header before accepting it (Jorge Timón)d7ada03
Use real number of cores for default -par, ignore virtual cores (Wladimir J. van der Laan)87f37e2
Make logging for validation optional (Wladimir J. van der Laan)2a1090d
CHECKLOCKTIMEVERIFY (BIP65) IsSuperMajority() soft-fork (Peter Todd)54e8bfe
Skip BIP 30 verification where not necessary (Alex Morcos)e54ebbf
Switch to libsecp256k1-based ECDSA validation (Pieter Wuille)61457c2
Switch to a constant-space Merkle root/branch algorithm. (Pieter Wuille)327291a
Add pre-allocated vector type and use it for CScript (Pieter Wuille)889e5b3
Correctly report high-S violations (Pieter Wuille)0e4f2a0
build: disable optional use of gmp in internal secp256k1 build (Wladimir J. van der Laan)87406aa
[OSX] revert renaming of Bitcoin-Qt.app and use CFBundleDisplayName (partial revert of #6116) (Jonas Schnelli)9d67b10
build/gitian misc updates (Cory Fields)d4565b6
gitian: Use the new bitcoin-detached-sigs git repo for OSX signatures (Cory Fields)d4a910c
Add autogen.sh to source tarball. (randy-waterhouse)1ae3196
depends: non-qt bumps for 0.12 (Cory Fields)059b352
Preserve user-passed CXXFLAGS with –enable-debug (Gavin Andresen)fee6554
Misc build fixes (Cory Fields)ef4945f
Include bitcoin-tx binary on Debian/Ubuntu (Zak Wilcox)4862708
depends: bump miniupnpc and ccache (Michael Ford)ae69a75
[depends] Latest config.guess and config.sub (Michael Ford)193f7b5
build: If both Qt4 and Qt5 are installed, use Qt5 (Wladimir J. van der Laan)348b281
build: Set osx permissions in the dmg to make Gatekeeper happy (Cory Fields)eccd671
[Depends] Bump Boost, miniupnpc, ccache & zeromq (Michael Ford)aa26ee0
Add security/export checks to gitian and fix current failures (Cory Fields)87550ee
Fix off-by-one error w/ nLockTime in the wallet (Peter Todd)ac5476e
re-enable wallet in autoprune (Jonas Schnelli)9e6c33b
Delay initial pruning until after wallet init (Adam Weiss)91389e5
fundrawtransaction (Matt Corallo)ddd8d80
Implement watchonly support in fundrawtransaction (Matt Corallo)0f0f323
Fix crash when mining with empty keypool. (Daniel Kraft)4939eab
Fix locking in GetTransaction. (Alex Morcos)4dbd43e
Enable wallet key imports without rescan in pruned mode. (Gregory Maxwell)5b77244
Do not store Merkle branches in the wallet. (Pieter Wuille)12a7712
Clean up change computation in CreateTransaction. (Daniel Kraft)48b5b84
Reject invalid pubkeys when reading ckey items from the wallet. (Gregory Maxwell)e0a5ef8
Fix fundrawtransaction handling of includeWatching (Peter Todd)616d61b
Optimisation: Store transaction list order in memory rather than compute it every need (Luke-Jr)e92377f
Improve usage of fee estimation code (Alex Morcos)a775182
[wallet, rpc tests] Fix settxfee, paytxfee (MarcoFalke)30c2d8c
Keep track of explicit wallet conflicts instead of using mempool (Pieter Wuille)9490bd7
[Wallet] Improve minimum absolute fee GUI options (Jonas Schnelli)83f06ca
Take the training wheels off anti-fee-sniping (Peter Todd)96e8d12
Issue#1643: Coinselection prunes extraneous inputs from ApproximateBestSubset (Murch)06c6a58
Checks for null data transaction before issuing error to debug.log (Andy Craze)a36d79b
Add sane fallback for fee estimation (Alex Morcos)ff9b610
Add regression test for vValue sort order (MarcoFalke)4707797
Make sure conflicted wallet tx’s update balances (Alex Morcos)621bbd8
[walletdb] Fix syntax error in key parser (MarcoFalke)00ec73e
wallet: Ignore MarkConflict if block hash is not known (Wladimir J. van der Laan)1329963
Update the wallet best block marker before pruning (Pieter Wuille)c57e12a
disconnect peers from peers tab via context menu (Diapolo)ab0ec67
extend rpc console peers tab (Diapolo)1369d69
use CHashWriter also in SignVerifyMessageDialog (Pavel Vasin)9848d42
Introduce PlatformStyle (Wladimir J. van der Laan)100c9d3
cleanup icons (MarcoFalke)0c465f5
allow users to set -onion via GUI (Diapolo)c0f66ce
show client user agent in debug window (Diapolo)878ea69
Disallow duplicate windows. (Casey Rodarmor)6f55cdd
add verifySize() function to PaymentServer (Diapolo)ca5e2a1
minor optimisations in peertablemodel (Diapolo)e59d2a8
allow banning and unbanning over UI->peers table (Jonas Schnelli)e04b2fa
Pop debug window in foreground when opened twice (MarcoFalke)c702521
Use monospace font (MarcoFalke)3694b74
Update coin control and smartfee labels (MarcoFalke)814697c
add shortcurts for debug-/console-window (Jonas Schnelli)03403d8
Use maxTxFee instead of 10000000 (MarcoFalke)a190777
ui: Add “Copy raw transaction data” to transaction list context menu (Wladimir J. van der Laan)776848a
simple mempool info in debug window (Jonas Schnelli)26af1ac
add startup option to reset Qt settings (Jonas Schnelli)2a94cd6
Call init’s parameter interaction before we create the UI options model (Jonas Schnelli)96b8025
reduce cs_main locks during tip update, more fluently update UI (Jonas Schnelli)f43c2f9
Add “NODE_BLOOM” to guiutil so that peers don’t get UNKNOWN[4] (Matt Corallo)5cadf3e
fix coincontrol update issue when deleting a send coins entry (Jonas Schnelli)1320300
Intro: Display required space (MarcoFalke)9265e89
quickfix for RPC timer interface problem (Jonas Schnelli)b16b5bc
[Wallet] Transaction View: LastMonth calculation fixed (crowning-)7726c48
[qt] Windows: Make rpcconsole monospace font larger (MarcoFalke)294f432
[qt] Peertable: Increase SUBVERSION_COLUMN_WIDTH (MarcoFalke)9005c91
build: comparison tool swap (Cory Fields)e307e13
build: comparison tool NPE fix (Cory Fields)0564c5b
Testing infrastructure: mocktime fixes (Gavin Andresen)60abba1
add unit tests for the decodescript rpc (mruddy)3203a08
Fix and improve txn_doublespend.py test (Tom Harding)6a73d66
tests: Fix bitcoin-tx signing test case (Wladimir J. van der Laan)7fc25c2
CLTV: Add more tests to improve coverage (Esteban Ordano)5121c68
Fix intermittent test failure, reduce test time (Tom Harding)44fa82d
[QA] fix possible reorg issue in (fund)rawtransaction(s).py RPC test (Jonas Schnelli)3d9362d
rpc: Remove chain-specific RequireRPCPassword (Wladimir J. van der Laan)bb59e78
tests: Remove old sh-based test framework (Wladimir J. van der Laan)d946e9a
RFC: Assert on probable deadlocks if the second lock isnt try_lock (Matt Corallo)d2464df
Clang lock debug (Cory Fields)410fd74
Don’t share objects between TestInstances (Casey Rodarmor)6c1c7fd
Fix test locking issues and un-revert the probable-deadlines assertions commit (Cory Fields)bb4faee
Fix race condition on test node shutdown (Casey Rodarmor)561f8af
Add p2p-fullblocktest.py (Casey Rodarmor)981fd92
Fix stale socket rebinding and re-enable python tests for Windows (Cory Fields)cb4d6d0
build: Remove dependency of bitcoin-cli on secp256k1 (Wladimir J. van der Laan)5ab5dca
Regression Tests: Migrated rpc-tests.sh to all Python rpc-tests.py (Peter Tschipper)d479311
Creates unittests for addrman, makes addrman more testable. (Ethan Heilman)c834f56
Added fPowNoRetargeting field to Consensus::Params (Eric Lombrozo)87e5539
[rpc-tests] Check return code (MarcoFalke)f2c869a
Add DERSIG transaction test cases (Ross Nicoll)5242bb3
Support gathering code coverage data for RPC tests with lcov (dexX7)c8322ff
Clear strMiscWarning before running PartitionAlert (Eric Lombrozo)2675276
[Tests] Fix BIP65 p2p test (Suhas Daftuar)725539e
[Test Suite] Fix test for null tx input (Daniel Kraft)a6d0d62
tests: Initialize networking on windows (Wladimir J. van der Laan)9fa54a1
[tests] Be more strict checking dust (MarcoFalke)5fcc14e
[tests] Add basic coverage reporting for RPC tests (James O’Beirne)72dccfc
Bugfix: Use unique autostart filenames on Linux for testnet/regtest (Luke-Jr)d8368a0
Replace scriptnum_test’s normative ScriptNum implementation (Wladimir J. van der Laan)6abf6eb
[Tests] Add prioritisetransaction RPC test (Suhas Daftuar)16f4a6e
Tests: Explicitly set chain limits in replace-by-fee test (Suhas Daftuar)9572e49
Removed offline testnet DNSSeed ‘alexykot.me’. (tnull)f3ad812
test: don’t override BITCOIND and BITCOINCLI if they’re set (Wladimir J. van der Laan)301f16a
Tests: Add more tests to p2p-fullblocktest (Suhas Daftuar)9ef7c54
[Tests] Add mempool_limit.py test (Jonas Schnelli)453c567
tests: Disable Tor interaction (Wladimir J. van der Laan)1ed938b
[qa] wallet: Check if maintenance changes the balance (MarcoFalke)d513405
[Tests] Eliminate intermittent failures in sendheaders.py (Suhas Daftuar)947c4ff
[rpc-tests] Change solve() to use rehash (Brad Andrews)e54ff2f
[init] add -blockversion help and extend -upnp help (Diapolo)1fea667
Consensus: Decouple ContextualCheckBlockHeader from checkpoints (Jorge Timón)eba2f06
Separate Consensus::CheckTxInputs and GetSpendHeight in CheckInputs (Jorge Timón)786ed11
detach wallet from miner (Jonas Schnelli)11576a5
[bitcoin-cli] improve error output (Jonas Schnelli)6db53b4
Add BITCOIND_SIGTERM_TIMEOUT to OpenRC init scripts (Florian Schmaus)b01981e
doc: add documentation for shared library libbitcoinconsensus (Braydon Fuller)dcc495e
Update Linearize tool to support Windows paths; fix variable scope; update README and example configuration (Paul Georgiou)8fe5cce
Separate core memory usage computation in core_memusage.h (Pieter Wuille)633fe10
Buffer log messages and explicitly open logs (Adam Weiss)7cbed7f
Avoid leaking file descriptors in RegisterLoad (Casey Rodarmor)a2bf40d
Make sure LogPrintf strings are line-terminated (Wladimir J. van der Laan)b6fee6b
Rationalize currency unit to “BTC” (Ross Nicoll)9bb4dd8
Removed contrib/bitrpc (Casey Rodarmor)41d650f
Use unique name for AlertNotify tempfile (Casey Rodarmor)e08a7d9
limitedmap fixes and tests (Casey Rodarmor)a6f2aff
Make sure we re-acquire lock if a task throws (Casey Rodarmor)f4d88c4
Make sure LogPrint strings are line-terminated (Ross Nicoll)195942d
Replace boost::reverse_lock with our own (Casey Rodarmor)13b8282
Add ZeroMQ notifications (João Barbosa)d5d1d2e
devtools: don’t push if signing fails in github-merge (Wladimir J. van der Laan)2b0567b
timedata: Prevent warning overkill (Wladimir J. van der Laan)f6ce59c
SanitizeString: Allow hypen char (MarcoFalke)4899a04
Bugfix: Fix testnet-in-a-box use case (Luke-Jr)b7d78fd
Simple benchmarking framework (Gavin Andresen)a092970
devtools: Add security-check.py (Wladimir J. van der Laan)fa1d252
devtools: add clang-format.py (MarcoFalke)f3d0fdd
util: Don’t set strMiscWarning on every exception (Wladimir J. van der Laan)93e0514
uint256::GetCheapHash bigendian compatibility (arowser)34e02e0
Assert now > 0 in GetTime GetTimeMillis GetTimeMicros (Patrick Strateman)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.12.1 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.12.1/
This is a new minor version release, including the BIP9, BIP68 and BIP112
softfork, various bugfixes and updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
Upgrading and downgrading
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or
bitcoind/bitcoin-qt (on Linux).
Because release 0.12.0 and later will obfuscate the chainstate on every
fresh sync or reindex, the chainstate is not backwards-compatible with
pre-0.12 versions of Bitcoin Core or other software.
If you want to downgrade after you have done a reindex with 0.12.0 or later,
you will need to reindex when you first start Bitcoin Core version 0.11 or
earlier.
Notable changes
This release includes a soft fork deployment to enforce BIP68,
BIP112 and BIP113 using the BIP9 deployment mechanism.
The deployment sets the block version number to 0x20000001 between
midnight 1st May 2016 and midnight 1st May 2017 to signal readiness for
deployment. The version number consists of 0x20000000 to indicate version
bits together with setting bit 0 to indicate support for this combined
deployment, shown as “csv” in the getblockchaininfo
RPC call.
For more information about the soft forking change, please see
https://github.com/bitcoin/bitcoin/pull/7648
This specific backport pull-request can be viewed at
https://github.com/bitcoin/bitcoin/pull/7543
BIP68 introduces relative lock-time consensus-enforced semantics of
the sequence number field to enable a signed transaction input to remain
invalid for a defined period of time after confirmation of its corresponding
outpoint.
For more information about the implementation, see
https://github.com/bitcoin/bitcoin/pull/7184
BIP112 redefines the existing OP_NOP3 as OP_CHECKSEQUENCEVERIFY (CSV)
for a new opcode in the Bitcoin scripting system that in combination with
BIP68 allows execution pathways of a script to be restricted based
on the age of the output being spent.
For more information about the implementation, see
https://github.com/bitcoin/bitcoin/pull/7524
Bitcoin Core 0.11.2 previously introduced mempool-only locktime
enforcement using GetMedianTimePast(). This release seeks to
consensus enforce the rule.
Bitcoin transactions currently may specify a locktime indicating when
they may be added to a valid block. Current consensus rules require
that blocks have a block header time greater than the locktime specified
in any transaction in that block.
Miners get to choose what time they use for their header time, with the
consensus rule being that no node will accept a block whose time is more
than two hours in the future. This creates a incentive for miners to
set their header times to future values in order to include locktimed
transactions which weren’t supposed to be included for up to two more
hours.
The consensus rules also specify that valid blocks may have a header
time greater than that of the median of the 11 previous blocks. This
GetMedianTimePast() time has a key feature we generally associate with
time: it can’t go backwards.
BIP113 specifies a soft fork enforced in this release that
weakens this perverse incentive for individual miners to use a future
time by requiring that valid blocks have a computed GetMedianTimePast()
greater than the locktime specified in any transaction in that block.
Mempool inclusion rules currently require transactions to be valid for
immediate inclusion in a block in order to be accepted into the mempool.
This release begins applying the BIP113 rule to received transactions,
so transaction whose time is greater than the GetMedianTimePast() will
no longer be accepted into the mempool.
Implication for miners: you will begin rejecting transactions that
would not be valid under BIP113, which will prevent you from producing
invalid blocks when BIP113 is enforced on the network. Any
transactions which are valid under the current rules but not yet valid
under the BIP113 rules will either be mined by other miners or delayed
until they are valid under BIP113. Note, however, that time-based
locktime transactions are more or less unseen on the network currently.
Implication for users: GetMedianTimePast() always trails behind the
current time, so a transaction locktime set to the present time will be
rejected by nodes running this release until the median time moves
forward. To compensate, subtract one hour (3,600 seconds) from your
locktimes to allow those transactions to be included in mempools at
approximately the expected time.
For more information about the implementation, see
https://github.com/bitcoin/bitcoin/pull/6566
The p2p alert system is off by default. To turn on, use -alert
with
startup configuration.
0.12.1 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
7ffc2bd
Add abandoned status to listtransactions (jonasschnelli)834aaef
Backport BIP9, BIP68 and BIP112 with softfork (btcdrak)90f1d24
Track block download times per individual block (sipa)4c3a00d
Reduce block timeout to 10 minutes (laanwj)4226aac
init: allow shutdown during ‘Activating best chain…’ (laanwj)46898e7
Version 2 transactions remain non-standard until CSV activates (sdaftuar)00d57b4
Workaround Travis-side CI issues (luke-jr)a10da9a
No need to set -L and –location for curl (MarcoFalke)ca8f160
Add curl to packages (now needed for depends) (luke-jr)a784675
Remove unnecessary executables from gitian release (laanwj)19866c1
Fix calculation of balances and available coins. (morcos)f04f4fd
Fix markdown syntax and line terminate LogPrint (MarcoFalke)4d035bc
added depends cross compile info (accraze)a0cea89
Mark p2p alert system as deprecated (btcdrak)c5f94f6
Disable bad-chain alert (btcdrak)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.13.0 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.13.0/
This is a new major version release, including new features, various bugfixes
and performance improvements, as well as updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
Compatibility
Microsoft ended support for Windows XP on April 8th, 2014,
an OS initially released in 2001. This means that not even critical security
updates will be released anymore. Without security updates, using a bitcoin
wallet on a XP machine is irresponsible at least.
In addition to that, with 0.12.x there have been varied reports of Bitcoin Core
randomly crashing on Windows XP. It is not clear
what the source of these crashes is, but it is likely that upstream
libraries such as Qt are no longer being tested on XP.
We do not have time nor resources to provide support for an OS that is
end-of-life. From 0.13.0 on, Windows XP is no longer supported. Users are
suggested to upgrade to a newer verion of Windows, or install an alternative OS
that is supported.
No attempt is made to prevent installing or running the software on Windows XP,
you can still do so at your own risk, but do not expect it to work: do not
report issues about Windows XP to the issue tracker.
Notable changes
As a result of growth of the UTXO set, performance with the prior default
database cache of 100 MiB has suffered.
For this reason the default was changed to 300 MiB in this release.
For nodes on low-memory systems, the database cache can be changed back to
100 MiB (or to another value) by either:
dbcache=100
in bitcoin.confOptions → Size of database cache
Note that the database cache setting has the most performance impact
during initial sync of a node, and when catching up after downtime.
The RPC command line client gained a new argument, -stdin
to read extra arguments from standard input, one per line until EOF/Ctrl-D.
For example:
$ src/bitcoin-cli -stdin walletpassphrase
mysecretcode
120
..... press Ctrl-D here to end input
$
It is recommended to use this for sensitive information such as wallet
passphrases, as command-line arguments can usually be read from the process
table by any user on the system.
Various code modernizations have been done. The Bitcoin Core code base has
started using C++11. This means that a C++11-capable compiler is now needed for
building. Effectively this means GCC 4.7 or higher, or Clang 3.3 or higher.
When cross-compiling for a target that doesn’t have C++11 libraries, configure with
./configure --enable-glibc-back-compat ... LDFLAGS=-static-libstdc++
.
For running the functional tests in qa/rpc-tests
, Python3.4 or higher is now
required.
Due to popular request, Linux ARM builds have been added to the uploaded
executables.
The following extra files can be found in the download directory or torrent:
bitcoin-${VERSION}-arm-linux-gnueabihf.tar.gz
: Linux binaries targeting bitcoin-${VERSION}-aarch64-linux-gnu.tar.gz
: Linux binaries targeting ARM builds are still experimental. If you have problems on a certain device or
Linux distribution combination please report them on the bug tracker, it may be
possible to resolve them. Note that the device you use must be (backward)
compatible with the architecture targeted by the binary that you use.
For example, a Raspberry Pi 2 Model B or Raspberry Pi 3 Model B (in its 32-bit
execution state) device, can run the 32-bit ARMv7-A targeted binary. However,
no model of Raspberry Pi 1 device can run either binary because they are all
ARMv6 architecture devices that are not compatible with ARMv7-A or ARMv8-A.
Note that Android is not considered ARM Linux in this context. The executables
are not expected to work out of the box on Android.
Support for block relay using the Compact Blocks protocol has been implemented
in PR 8068.
The primary goal is reducing the bandwidth spikes at relay time, though in many
cases it also reduces propagation delay. It is automatically enabled between
compatible peers.
BIP 152
As a side-effect, ordinary non-mining nodes will download and upload blocks
faster if those blocks were produced by miners using similar transaction
filtering policies. This means that a miner who produces a block with many
transactions discouraged by your node will be relayed slower than one with
only transactions already in your memory pool. The overall effect of such
relay differences on the network may result in blocks which include widely-
discouraged transactions losing a stale block race, and therefore miners may
wish to configure their node to take common relay policies into consideration.
Newly created wallets will use hierarchical deterministic key generation
according to BIP32 (keypath m/0’/0’/k’).
Existing wallets will still use traditional key generation.
Backups of HD wallets, regardless of when they have been created, can
therefore be used to re-generate all possible private keys, even the
ones which haven’t already been generated during the time of the backup.
Attention: Encrypting the wallet will create a new seed which requires
a new backup!
Wallet dumps (created using the dumpwallet
RPC) will contain the deterministic
seed. This is expected to allow future versions to import the seed and all
associated funds, but this is not yet implemented.
HD key generation for new wallets can be disabled by -usehd=0
. Keep in
mind that this flag only has affect on newly created wallets.
You can’t disable HD key generation once you have created a HD wallet.
There is no distinction between internal (change) and external keys.
HD wallets are incompatible with older versions of Bitcoin Core.
Pull request, BIP 32
The code preparations for Segregated Witness (“segwit”), as described in BIP
141, BIP
143, BIP
144, and BIP
145 are
finished and included in this release. However, BIP 141 does not yet specify
activation parameters on mainnet, and so this release does not support segwit
use on mainnet. Testnet use is supported, and after BIP 141 is updated with
proposed parameters, a future release of Bitcoin Core is expected that
implements those parameters for mainnet.
Furthermore, because segwit activation is not yet specified for mainnet,
version 0.13.0 will behave similarly as other pre-segwit releases even after a
future activation of BIP 141 on the network. Upgrading from 0.13.0 will be
required in order to utilize segwit-related features on mainnet (such as signal
BIP 141 activation, mine segwit blocks, fully validate segwit blocks, relay
segwit blocks to other segwit nodes, and use segwit transactions in the
wallet, etc).
The mining transaction selection algorithm has been replaced with an algorithm
that selects transactions based on their feerate inclusive of unconfirmed
ancestor transactions. This means that a low-fee transaction can become more
likely to be selected if a high-fee transaction that spends its outputs is
relayed.
With this change, the -blockminsize
command line option has been removed.
The command line option -blockmaxsize
remains an option to specify the
maximum number of serialized bytes in a generated block. In addition, the new
command line option -blockmaxweight
has been added, which specifies the
maximum “block weight” of a generated block, as defined by [BIP 141 (Segregated
Witness)] (https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki).
In preparation for Segregated Witness, the mining algorithm has been modified
to optimize transaction selection for a given block weight, rather than a given
number of serialized bytes in a block. In this release, transaction selection
is unaffected by this distinction (as BIP 141 activation is not supported on
mainnet in this release, see above), but in future releases and after BIP 141
activation, these calculations would be expected to differ.
For optimal runtime performance, miners using this release should specify
-blockmaxweight
on the command line, and not specify -blockmaxsize
.
Additionally (or only) specifying -blockmaxsize
, or relying on default
settings for both, may result in performance degradation, as the logic to
support -blockmaxsize
performs additional computation to ensure that
constraint is met. (Note that for mainnet, in this release, the equivalent
parameter for -blockmaxweight
would be four times the desired
-blockmaxsize
. See [BIP 141]
(https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki) for additional
details.)
In the future, the -blockmaxsize
option may be removed, as block creation is
no longer optimized for this metric. Feedback is requested on whether to
deprecate or keep this command line option in future releases.
In earlier versions, reindexing did validation while reading through the block
files on disk. These two have now been split up, so that all blocks are known
before validation starts. This was necessary to make certain optimizations that
are available during normal synchronizations also available during reindexing.
The two phases are distinct in the Bitcoin-Qt GUI. During the first one,
“Reindexing blocks on disk” is shown. During the second (slower) one,
“Processing blocks on disk” is shown.
It is possible to only redo validation now, without rebuilding the block index,
using the command line option -reindex-chainstate
(in addition to
-reindex
which does both). This new option is useful when the blocks on disk
are assumed to be fine, but the chainstate is still corrupted. It is also
useful for benchmarks.
As CPU mining has been useless for a long time, the internal miner has been
removed in this release, and replaced with a simpler implementation for the
test framework.
The overall result of this is that setgenerate
RPC call has been removed, as
well as the -gen
and -genproclimit
command-line options.
For testing, the generate
call can still be used to mine a block, and a new
RPC call generatetoaddress
has been added to mine to a specific address. This
works with wallet disabled.
The former implementation of the bytespersigop filter accidentally broke bare
multisig (which is meant to be controlled by the permitbaremultisig
option),
since the consensus protocol always counts these older transaction forms as 20
sigops for backwards compatibility. Simply fixing this bug by counting more
accurately would have reintroduced a vulnerability. It has therefore been
replaced with a new implementation that rather than filter such transactions,
instead treats them (for fee purposes only) as if they were in fact the size
of a transaction actually using all 20 sigops.
The optional new p2p message “feefilter” is implemented and the protocol
version is bumped to 70013. Upon receiving a feefilter message from a peer,
a node will not send invs for any transactions which do not meet the filter
feerate. BIP 133
The P2P alert system has been removed in PR #7692 and the alert
P2P message
is no longer supported.
The transaction relay mechanism used to relay one quarter of all transactions
instantly, while queueing up the rest and sending them out in batch. As
this resulted in chains of dependent transactions being reordered, it
systematically hurt transaction relay. The relay code was redesigned in PRs
#7840 and #8082, and now always batches transactions announcements while also
sorting them according to dependency order. This significantly reduces orphan
transactions. To compensate for the removal of instant relay, the frequency of
batch sending was doubled for outgoing peers.
Since PR #7840 the BIP35 mempool
command is also subject to batch processing.
Also the mempool
message is no longer handled for non-whitelisted peers when
NODE_BLOOM
is disabled through -peerbloomfilters=0
.
The maximum size of orphan transactions that are kept in memory until their
ancestors arrive has been raised in PR #8179 from 5000 to 99999 bytes. They
are now also removed from memory when they are included in a block, conflict
with a block, and time out after 20 minutes.
We respond at most once to a getaddr request during the lifetime of a
connection since PR #7856.
Connections to peers who have recently been the first one to give us a valid
new block or transaction are protected from disconnections since PR #8084.
RPC calls have been added to output detailed statistics for individual mempool
entries, as well as to calculate the in-mempool ancestors or descendants of a
transaction: see getmempoolentry
, getmempoolancestors
, getmempooldescendants
.
gettxoutsetinfo
UTXO hash (hash_serialized
) has changed. There was a divergence between
32-bit and 64-bit platforms, and the txids were missing in the hashed data. This has been
fixed, but this means that the output will be different than from previous versions.
Full UTF-8 support in the RPC API. Non-ASCII characters in, for example,
wallet labels have always been malformed because they weren’t taken into account
properly in JSON RPC processing. This is no longer the case. This also affects
the GUI debug console.
Asm script outputs replacements for OP_NOP2 and OP_NOP3
OP_NOP2 has been renamed to OP_CHECKLOCKTIMEVERIFY by BIP
65
OP_NOP3 has been renamed to OP_CHECKSEQUENCEVERIFY by BIP
112
The following outputs are affected by this change:
RPC getrawtransaction
(in verbose mode)
decoderawtransaction
decodescript
/rest/tx/
(JSON format)/rest/block/
(JSON format when including extended tx details)bitcoin-tx -json
The sorting of the output of the getrawmempool
output has changed.
New RPC commands: generatetoaddress
, importprunedfunds
, removeprunedfunds
, signmessagewithprivkey
,
getmempoolancestors
, getmempooldescendants
, getmempoolentry
,
createwitnessaddress
, addwitnessaddress
.
Removed RPC commands: setgenerate
, getgenerate
.
New options were added to fundrawtransaction
: includeWatching
, changeAddress
, changePosition
and feeRate
.
0.13.0 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
9ee02cf
Remove cs_main lock from createrawtransaction
(laanwj)2cd004b
Fix typo, wrong information in gettxout help text (paveljanik)82429d0
Indicate which transactions are signaling opt-in RBF (sdaftuar)b49a623
Changed getnetworkhps value to double to avoid overflow (instagibbs)8b958ab
Input-from-stdin mode for bitcoin-cli (laanwj)c9a1265
Use cached block hash in blockToJSON() (rat4)9af69fa
Correct importaddress help reference to importpubkey (CypherGrue)16555b6
Register calls where they are defined (laanwj)e662a76
Fix generatetoaddress failing to parse address (mruddy)916b15a
Add versionHex in getblock and getblockheader JSON results (mruddy)72c54e3
Getblockchaininfo: make bip9_softforks an object, not an array (rustyrussell)d97101e
Do not print minping time in getpeerinfo when no ping received yet (paveljanik)be14ca5
Add multiple options to fundrawtransaction (promag)9e47fce
Add cursor to iterate over utxo set, use this in gettxoutsetinfo
(laanwj)88616d2
Divergence between 32- and 64-bit when hashing >4GB affects gettxoutsetinfo
(laanwj)4205ad7
Speed up getchaintips
(mrbandrews)a1eb344
Append a message sequence number to every ZMQ notification (jonasschnelli)46880ed
List solvability in listunspent output and improve help (sipa)5725807
Push back getaddednodeinfo
dead value (instagibbs)0630353
Create signmessagewithprivkey
rpc (achow101)c028c7b
Expose information on whether transaction relay is enabled in getnetworkinfo
(laanwj)8c1e49b
Add feerate option to fundrawtransaction
(jonasschnelli)9b6a48c
Reduce unnecessary hashing in signrawtransaction
(jonasnick)79004d4
Add support for transaction sequence number (jonasschnelli)75ec320
fundrawtransaction
feeRate: Use BTC/kB (MarcoFalke)7ce9ac5
Expose ancestor/descendant information over RPC (sdaftuar)62fcf27
Fix createrawtx sequence number unsigned int parsing (jonasschnelli)9c3d0fa
Add full UTF-8 support to RPC (laanwj)304eff3
Don’t use floating point in rpcwallet (MarcoFalke)5a06ebb
Hide softfork in getblockchaininfo
if timeout is 0 (jl2012)1922e5a
Remove unnecessary LOCK(cs_main) in getrawmempool (dcousens)6a07208
Save last db read (morcos)0192806
Limitfreerelay edge case bugfix (ptschip)11d74f6
Replace maxFeeRate of 10000*minRelayTxFee with maxTxFee in mempool (MarcoFalke)9f33dba
Add tags to mempool’s mapTx indices (sdaftuar)26a2a72
Re-remove ERROR logging for mempool rejects (laanwj)14d6324
Keep reorgs fast for SequenceLocks checks (morcos)01f4267
Mempool: Add tracking of ancestor packages (sdaftuar)fc9e334
Txdb: Fix assert crash in new UTXO set cursor (laanwj)f9c2ac7
Minor changes to dbwrapper to simplify support for other databases (laanwj)e26b620
Fix OOM when deserializing UTXO entries with invalid length (sipa)5e374f7
Use SipHash-2-4 for various non-cryptographic hashes (sipa)d720980
VerifyDB: don’t check blocks that have been pruned (sdaftuar)862fd24
Do not use mempool for GETDATA for tx accepted after the last mempool req (gmaxwell)a82f033
Replace mapNextTx with slimmer setSpends (kazcw)1f86d64
Stop trimming when mapTx is empty (sipa)396f9d6
Bump -dbcache
default to 300MiB (laanwj)eb33179
Eliminate unnecessary call to CheckBlock (sdaftuar)006cdf6
Optimize and Cleanup CScript::FindAndDelete (pstratem)239d419
Optimize reindex (sipa)3081fb9
Put hex-encoded version in UpdateTip (sipa)d612837
Testnet-only segregated witness (sipa)3730393
Improve handling of unconnecting headers (sdaftuar)fca1a41
Rename “block cost” to “block weight” (sdaftuar)f84ee3d
Make witness v0 outputs non-standard (jl2012)3f65ba2
Treat high-sigop transactions as larger rather than rejecting them (sipa)dc0305d
Log bytes recv/sent per command (jonasschnelli)3b43cad
Do not download transactions during initial blockchain sync (ptschip)898fedf
peers.dat, banlist.dat recreated when missing (kirkalx)3da5d1b
Fix memleak in TorController (laanwj, jonasschnelli)9f14e5a
Remove vfReachable and modify IsReachable to only use vfLimited (pstratem)9426632
De-neuter NODE_BLOOM (pstratem)29b2be6
Remove P2P alert system (btcdrak)c946a15
Implement “feefilter” P2P message (morcos)352fd57
Add -maxtimeadjustment
command line option (mruddy)232592a
Add IPv6 Link-Local Address Support (mruddy)e6a4d48
Improve AlreadyHave (morcos)64e71b3
Only send one GetAddr response per connection (gmaxwell)7daa3ad
Split DNS resolving functionality out of net structures (theuni)7617682
Fix headers announcements edge case (sdaftuar)d9594bf
Fix IsInitialBlockDownload for testnet (jmacwhyte)03cf6e8
fix race that could fail to persist a ban (kazcw)3b9a0bf
Several performance and privacy improvements to inv/mempool handling (sipa)65aecda
Don’t run ThreadMessageHandler at lowered priority (kazcw)5c3f8dd
Fix de-serialization bug where AddrMan is left corrupted (EthanHeilman)ed749bd
CAddrMan::Deserialize handle corrupt serializations better (pstratem)83121cc
Prerequisites for p2p encapsulation changes (theuni)18436d8
Fix Socks5() connect failures to be less noisy and less unnecessarily scary (wtogami)01d8359
Defer inserting into maprelay until just before relaying (gmaxwell)6a22373
Only use AddInventoryKnown for transactions (sdaftuar)2156fa2
Disable the mempool P2P command when bloom filters disabled (petertodd)67c91f8
Addrman offline attempts (gmaxwell)761cddb
Tor: Change auth order to only use password auth if -torpassword (laanwj)cd0c513
Add support for dnsseeds with option to filter by servicebits (jonasschnelli)4286f43
Use SipHash for node eviction (sipa)1445835
Drop vAddrToSend after sending big addr message (kazcw)be9711e
Enforce expected outbound services (sipa)0a64777
Do not set extra flags for unfiltered DNS seed results (sipa)e4bb4a8
Add recently accepted blocks and txn to AttemptToEvictConnection (gmaxwell)3f89a53
Rework addnode behaviour (sipa)94ab58b
Evict orphans which are included or precluded by accepted blocks (gmaxwell)e9d76a1
Compact Blocks (TheBlueMatt)0833894
Update petertodd’s testnet seed (petertodd)5cd35d3
Mark my dnsseed as supporting filtering (sipa)042c323
Remove bad chain alert partition check (btcdrak)1bc9c80
Do not send witnesses in cmpctblock (sipa)ca40ef6
Fix mempool DoS vulnerability from malleated transactions (sdaftuar)16ccb74
Account for sendheaders
verack
messages (laanwj)425278d
Bugfix: use global ::fRelayTxes instead of CNode in version send (sipa)b7e2011
Prevent fingerprinting, disk-DoS with compact blocks (sdaftuar)41f1a3e
C++11 build/runtime fixes (theuni)fd9356b
c++11: add scoped enum fallbacks to CPPFLAGS rather than defining them locally (theuni)a6771fc
Use Debian 8.3 in gitian build guide (fanquake)152a821
Build against system UniValue when available (luke-jr)621940e
LibreSSL doesn’t define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT instead (paveljanik)9b9bfce
autogen.sh: warn about needing autoconf if autoreconf is not found (knocte)19324cf
Crystal clean make clean (paveljanik)18b3f1b
Add missing sudo entry in gitian VM setup (btcdrak)639ec58
[depends] Delete unused patches (MarcoFalke)c15eb28
Add curl to Gitian setup instructions (btcdrak)909b72b
[Depends] Bump miniupnpc and config.guess+sub (fanquake)5131005
build: python 3 compatibility (laanwj)28ad4d9
Fix quoting of copyright holders in configure.ac (domob1812)a67bc5e
[build-aux] Update Boost & check macros to latest serials (fanquake)4dc1b3a
Use relative paths instead of absolute paths in protoc calls (paveljanik)bbd210d
depends: some base fixes/changes (theuni)73fc922
Build System: Use PACKAGE_TARNAME in NSIS script (JeremyRand)187186b
test: move accounting_tests and rpc_wallet_tests to wallet/test (laanwj)351abf9
leveldb: integrate leveldb into our buildsystem (theuni)a407807
Re-instate TARGET_OS=linux in configure.ac. Removed by 351abf9e035 (randy-waterhouse)c3e3cfb
Switch Travis to Trusty (theuni)08b37c5
build: quiet annoying warnings without adding new ones (theuni)06162f1
build: Enable C++11 in build, require C++11 compiler (laanwj)559fbae
build: No need to check for leveldb atomics (theuni)f9b4582
[depends] Add -stdlib=libc++ to darwin CXX flags (fanquake)6a034ed
[depends] Bump Freetype, ccache, ZeroMQ, miniupnpc, expat (fanquake)19ea173
Ship debug tarballs/zips with debug symbols (theuni)f0299d8
Add –disable-bench to config flags for windows (laanwj)fd9881a
[gitian] Default reference_datetime to commit author date (MarcoFalke)9201ce8
Get rid of CLIENT_DATE
(laanwj)fde0ac4
Finish up out-of-tree changes (theuni)65a9d7d
Add armhf/aarch64 gitian builds (theuni)cca1c8c
[gitian] set correct PATH for wrappers (MarcoFalke)5201614
Sync ax_pthread with upstream draft4 (fanquake)12a541e
[Qt] Bump to Qt5.6.1 (jonasschnelli)da50997
windows: Add testnet link to installer (laanwj)0cca2fe
[travis] Update SDK_URL (MarcoFalke)6ae20df
Require boost for bench (theuni)2e51590
Don’t require sudo for Linux (theuni)67caef6
Fix pkg-config issues for 0.13 (theuni)1fe7f40
Fix OSX non-deterministic dmg (theuni)cfd1280
Gbuild: Set memory explicitly (default is too low) (MarcoFalke)00b4b8d
Add InMempool() info to transaction details (jonasschnelli)5f3c670
[RPC-Tests] add simple way to run rpc test over QT clients (jonasschnelli)a1c185b
Fix misleading translation (MarcoFalke)be9a9a3
qt5: Use the fixed font the system recommends (MarcoFalke)08ab906
Add note to coin control dialog QT5 workaround (fanquake)e289807
Replace some instances of formatWithUnit with formatHtmlWithUnit (fanquake)3b57e9c
Fix RPCTimerInterface ordering issue (jonasschnelli)c079d79
Transaction View: LastMonth calculation fixed (crowning-)e1060c5
coincontrol workaround is still needed in qt5.4 (fixed in qt5.5) (MarcoFalke)ae2db67
Rename “amount” to “requested amount” in receive coins table (jonasschnelli)cdcbc59
Add option to increase/decrease font size in the console window (jonasschnelli)9645218
Disable tab navigation for peers tables (Kefkius)354b03d
build: Remove spurious dollar sign. Fixes #7189 (dooglus)7f001bd
Remove openssl info from init/log and from Qt debug window (jonasschnelli)87d6562
Add ‘copy full transaction details’ option (ericshawlinux)3798e5d
Add autocomplete to bitcoin-qt’s console window (GamerSg)b24266c
Fix history deletion bug after font size change (achow101)41d2dfa
Remove reflection from about
icon (laanwj)f034bce
Remove 0-fee from send dialog (MarcoFalke)b88e0b0
Use CCoinControl selection in CWallet::FundTransaction (promag)0b98dd7
Debug window: replace “Build date” with “Datadir” (jonasschnelli)60db51d
remove trailing output-index from transaction-id (jonasschnelli)6383268
Clear the input line after activating autocomplete (paveljanik)f604bf6
Fix out-of-tree GUI builds (laanwj)574ddc6
Make it possible to show details for multiple transactions (laanwj)b33824b
Delay user confirmation of send (Tyler-Hardin)7c8558d
Add option to disable the system tray icon (Tyler-Hardin)169d379
Fix Cmd-Q / Menu Quit shutdown on OSX (jonasschnelli)6929711
Don’t allow to open the debug window during splashscreen & verification state (jonasschnelli)77b49ac
Sort transactions by date (Tyler-Hardin)eb2f6f7
askpassphrasedialog: Clear pass fields on accept (rat4)ee1533e
Fix RPC console auto completer (UdjinM6)fb0ac48
Add bitcoin address label to request payment QR code (makevoid)760a6c7
Fix a bug where the SplashScreen will not be hidden during startup (jonasschnelli)af2421c
BUG: bitcoin-qt crash (fsb4000)ff03c50
Do not ask a UI question from bitcoind (sipa)91abb77
Network-specific example address (laanwj)a914968
UI support for abandoned transactions (jonasschnelli)f7a403b
Add a link to the Bitcoin-Core repository and website to the About Dialog (MarcoFalke)6a87eb0
Remove client name from debug window (laanwj)45eba4b
Add dbcache migration path (jonasschnelli)fc08994
Reduce inefficiency of GetAccountAddress() (dooglus)78e81b0
Warn on unexpected EOF while salvaging wallet (laanwj)3368895
Don’t resend wallet txs that aren’t in our own mempool (morcos)86a1ec5
Move wallet help string creation to CWallet (jonasschnelli)5b3b5a7
Move “load wallet phase” to CWallet (jonasschnelli)0735c0c
Move hardcoded file name out of log messages (MarcoFalke)4900641
Prevent multiple calls to CWallet::AvailableCoins (promag)e5c3511
Fix lockunspent help message (promag)b35a591
Add import/removeprunedfunds rpc call (instagibbs)48c5adf
add bip32 pub key serialization (jonasschnelli)bafd075
Fix for incorrect locking in GetPubKey() (keystore.cpp) (yurizhykin)41138f9
init: Move berkeleydb version reporting to wallet (laanwj)373b50d
Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk (pstratem)f6b7df3
Improve Wallet encapsulation (pstratem)950be19
Always require OS randomness when generating secret keys (sipa)b89ef13
Replace OpenSSL AES with ctaes-based version (sipa)f972b04
Prevent multiple calls to ExtractDestination (pedrobranco)243ac0c
Improve CWallet API with new AccountMove function (pstratem)52c3f34
Improve CWallet API with new GetAccountPubkey function (pstratem)b67a472
Add simplest BIP32/deterministic key generation implementation (jonasschnelli)a6ddb19
Stop treating importaddress’ed scripts as change (sipa)aef3811
wallet: Revert input selection post-pruning (laanwj)bc94b87
Keep HD seed during salvagewallet (jonasschnelli)238300b
Add HD keypath to CKeyMetadata, report metadata in validateaddress (jonasschnelli)3b38a6a
Ensure <0.13 clients can’t open HD wallets (jonasschnelli)ebea651
Move SetMinVersion for FEATURE_HD to SetHDMasterKey (pstratem)73adfe3
Correct hdmasterkeyid/masterkeyid name confusion (jonasschnelli)18b8ee1
Add HD xpriv to dumpwallet (jonasschnelli)c3c82c4
Create a new HD seed after encrypting the wallet (jonasschnelli)d3dfc6d
Test walletpassphrase timeout (MarcoFalke)47c5ed1
Make max tip age an option instead of chainparam (laanwj)21376af
Trivial: [qa] wallet: Print maintenance (MarcoFalke)668906f
[travis] Fail when documentation is outdated (MarcoFalke)93b0576
[qa] Change default block priority size to 0 (MarcoFalke)02676c5
Use createrawtx locktime parm in txn_clone (dgenr8)326ffed
Adds unittests for CAddrMan and CAddrinfo, removes source of non-determinism (EthanHeilman)d007511
tests: Remove May15 test (laanwj)18cb2d5
Add bip68-sequence.py to extended rpc tests (btcdrak)ce5fc02
test: test leading spaces for ParseHex (laanwj)1b68de3
[travis] Only run check-doc.py once (MarcoFalke)7f96671
[travis] Exit early when check-doc.py fails (MarcoFalke)56d2c4e
Move GetTempPath() to testutil (musalbas)f1ca891
test: script_error checking in script_invalid tests (laanwj)3d0dfdb
Extend tests (MarcoFalke)622fe6c
Tests: make prioritise_transaction.py more robust (sdaftuar)efde86b
Tests: fix missing import in mempool_packages (sdaftuar)29e1131
Add tests verifychain, lockunspent, getbalance, listsinceblock (MarcoFalke)3b4324b
rpc-test: Normalize assert() (MarcoFalke)26794d4
wallet: Wait for reindex to catch up (MarcoFalke)a65b36c
Don’t run pruning.py twice (MarcoFalke)7c80e72
Fix comments in tests (btcdrak)e9723cb
tests: Make proxy_test work on travis servers without IPv6 (laanwj)70ac71b
Remove misleading “errorString syntax” (MarcoFalke)401c65c
maxblocksinflight: Actually enable test (MarcoFalke)3bc71e1
httpbasics: Actually test second connection (MarcoFalke)ab8586e
tests: add varints_bitpatterns test (laanwj)491171f
Clean up lockorder data of destroyed mutexes (sipa)6ef5e00
py2: Unfiddle strings into bytes explicitly (MarcoFalke)53adc83
[test] bctest.py: Revert faa41ee (MarcoFalke)cabba24
[travis] Print the commit which was evaluated (MarcoFalke)b1bf511
tests: Check Content-Type header returned from RPC server (laanwj)fa9d86f
pull-tester: Don’t mute zmq ImportError (MarcoFalke)0e6fd5e
Add listunspent() test for spendable/unspendable UTXO (jpdffonseca)59ad568
Tests: Fix deserialization of reject messages (sdaftuar)0ea3941
Fixing comment in script_test.json test case (Christewart)0ad1041
Fixed miner test values, gave constants for less error-prone values (instagibbs)88b77c7
Smartfees: Properly use ordered dict (MarcoFalke)77b637f
Switch to py3 (MarcoFalke)409a8a1
Revert fatal-ness of missing python-zmq (laanwj)3e90fe6
Autofind rpc tests –srcdir (jonasschnelli)5767e80
Fix multithread CScheduler and reenable test (paveljanik)423ca30
pull-tester: Run rpc test in parallel (MarcoFalke)69b3a6d
Bench: Add crypto hash benchmarks (laanwj)5b736dd
Fix bip9-softforks blockstore issue (MarcoFalke)1f01443
Add op csv tests to script_tests.json (Christewart)e2bf830
Various minor fixes (MarcoFalke)1b87e5b
Travis: ‘make check’ in parallel and verbose (theuni)8844ef1
Remove hardcoded “4 nodes” from test_framework (MarcoFalke)37f9a1f
Test_framework: Set wait-timeout for bitcoind procs (MarcoFalke)6700cc9
Test framework: only cleanup on successful test runs (sdaftuar)06bd4f6
Test_framework: Append portseed to tmpdir (MarcoFalke)6ff2c8d
Add timeout to sync_blocks() and sync_mempools() (sdaftuar)61b8684
Benchmark SipHash (sipa)52b803e
Bench: Added base58 encoding/decoding benchmarks (yurizhykin)0026e0e
Avoid integer division in the benchmark inner-most loop (gmaxwell)a2df115
Adding P2SH(p2pkh) script test case (Christewart)ec45cc5
Extend #7956 with one more test (TheBlueMatt)ae5575b
Fix interrupted HTTP RPC connection workaround for Python 3.5+ (sipa)0f24eaf
[Bitcoin-Tx] fix missing test fixtures, fix 32bit atoi issue (jonasschnelli)0b5279f
Src/test: Do not shadow local variables (paveljanik)44c1b1c
Continuing port of java comparison tool (mrbandrews)36b7400
fundrawtransaction: Fix race, assert amounts (MarcoFalke)ed2cd59
Mininode: fail on send_message instead of silent return (MarcoFalke)a072d1a
Don’t use floating point in wallet tests (MarcoFalke)65c2058
Test_framework: Use different rpc_auth_pair for each node (MarcoFalke)0d41d70
Assert ‘changePosition out of bounds’ (MarcoFalke)961893f
Enable mempool consistency checks in unit tests (sipa)84370d5
test_framework: python3.4 authproxy compat (laanwj)d8e862a
test_framework: detect failure of bitcoind startup (laanwj)115735d
Increase sync_blocks() timeouts in pruning.py (MarcoFalke)af9b7a9
Solve trivial merge conflict in p2p-segwit.py (MarcoFalke)3e4cf8f
Travis: use slim generic image, and some fixups (theuni)5c7df70
Test_framework: Properly print exception (MarcoFalke)7771aa5
Remove non-determinism which is breaking net_tests #8069 (EthanHeilman)bb2646a
Add wallet-hd test (MarcoFalke)cd0910b
Fix p2p-feefilter.py for changed tx relay behavior (sdaftuar)11c7699
Remove internal miner (Leviathn)c87f51e
Make the generate RPC call function for non-regtest (sipa)e2ebd25
Add generatetoaddress RPC to mine to an address (achow101)66ed450
Versionbits: GBT support (luke-jr)66db2d6
Select transactions using feerate-with-ancestors (sdaftuar)f5660d3
Mining-related fixups for 0.13.0 (sdaftuar)536b75e
Add support for negative fee rates, fixes prioritizetransaction
(MarcoFalke)86edc20
Scale legacy sigop count in CreateNewBlock (sdaftuar)8b0eee6
Bugfix: Use pre-BIP141 sigops until segwit activates (GBT) (luke-jr)69e2a40
Add example for building with constrained resources (jarret)c2c69ed
Add OSX ZMQ requirement to QA readme (fanquake)377d131
Clarify documentation for running a tor node (nathaniel-mahieu)4b12266
Add example for listing ./configure flags (nathaniel-mahieu)3eae681
Add arch linux build example (mruddy)ff69aaf
Fedora build requirements (wtogami)fbedc09
Fedora build requirements, add gcc-c++ and fix typo (wtogami)fbd8478
Fixed invalid example paths in gitian-building.md (JeremyRand)63fbdbc
Mention Windows XP end of support in release notes (laanwj)5077d2c
Update bips.md for CSV softfork (fanquake)e0b3e19
Add note about using the Qt official binary installer (paveljanik)e30a5b0
Change Precise to Trusty in gitian-building.md (JeremyRand)8bb5d3d
Update gitian build guide to debian 8.4.0 (fanquake)b778e59
Replace precise with trusty (MarcoFalke)fc23fee
Update bitcoin-core GitHub links (MarcoFalke)e3a8207
Add basic git squash workflow (fanquake)214ec0b
Update port in tor.md (MarcoFalke)37c9830
Use Debian 8.5 in the gitian-build guide (fanquake)3685e0c
Clarify help for getblockchaininfo
(paveljanik)ea0f5a2
Note that reviewers should mention the id of the commits they reviewed (pstratem)c851d8d
[init] Add missing help for args (MarcoFalke)f9fd4c2
Improve CheckInputs() comment about sig verification (petertodd)1e06bab
Minor improvements to the release process (PRabahy)4cdbd42
Improve block validity/ConnectBlock() comments (petertodd)db2e1c0
Fix and cleanup listreceivedbyX documentation (instagibbs)b6e00af
Clarify description of blockindex (pinheadmz)f06af57
Improving wording related to Boost library requirements [updated] (jonathancross)0fa88ef
Add dependency info to test docs (elliotolds)3ba07bd
RPM spec file project (AliceWonderMiscreations)229a17c
Removed call to TryCreateDirectory
from GetDefaultDataDir
in src/util.cpp
(alexreg)ec870e1
Prevector: fix 2 bugs in currently unreached code paths (kazcw)90653bc
CBase58Data::SetString: cleanse the full vector (kazcw)c4e8390
Update release process (laanwj)a9c8b74
Log invalid block hash to make debugging easier (paveljanik)8206835
More comments on the design of AttemptToEvictConnection (gmaxwell)47a7cfb
UpdateTip: log only one line at most per block (laanwj)e7e25ea
Add benchmarking notes (fanquake)58f0c92
Update implemented BIPs list (fanquake)58725ba
Simplify OS X build notes (fanquake)d46b8b5
comment nit: miners don’t vote (instagibbs)22e0b35
Log/report in 10% steps during VerifyDB (jonasschnelli)d366185
util: Add ParseUInt32 and ParseUInt64 (laanwj)f7b1bfc
Add git and github tips and tricks to developer notes (sipa)67db011
developer notes: updates for C++11 (kazcw)8ccdac1
[Doc] Update OS X build notes for 10.11 SDK (fanquake)9f1807a
Mention Linux ARM executables in release process and notes (laanwj)ff46dd4
Rename OP_NOP3 to OP_CHECKSEQUENCEVERIFY (btcdrak)26316ff
bash-completion: Adapt for 0.12 and 0.13 (roques)3dc3149
Missing patches from 0.12 (MarcoFalke)54a550b
Switch to a more efficient rolling Bloom filter (sipa)de9e5ea
Combine common error strings for different options so translations can be shared and reused (luke-jr)b8f485c
[contrib] Add clang-format-diff.py (MarcoFalke)e6f97ef
devtools: replace github-merge with python version (laanwj)0893705
devtools: show pull and commit information in github-merge (laanwj)6a5932b
devtools: github-merge get toplevel dir without extra whitespace (achow101)20a408c
devtools: Fix utf-8 support in messages for github-merge (laanwj)409f843
Delete outdated test-patches reference (Lewuathe)386f438
remove unused NOBLKS_VERSION_{START,END} constants (rat4)aa0d2b2
devtools: make github-merge.py use py3 (laanwj)55db5f0
devtools: Auto-set branch to merge to in github-merge (laanwj)f17032f
Improve rolling bloom filter performance and benchmark (sipa)2efe38b
signal handling: fReopenDebugLog and fRequestShutdown should be type sig_atomic_t (catilac)f6598df
Fixes for verify-commits script (petertodd)8360d5b
libconsensus: Expose a flag for BIP112 (jtimon)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.13.1 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.13.1/
This is a new minor version release, including activation parameters for the
segwit softfork, various bugfixes and performance improvements, as well as
updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
Compatibility
Microsoft ended support for Windows XP on April 8th, 2014,
an OS initially released in 2001. This means that not even critical security
updates will be released anymore. Without security updates, using a bitcoin
wallet on a XP machine is irresponsible at least.
In addition to that, with 0.12.x there have been varied reports of Bitcoin Core
randomly crashing on Windows XP. It is not clear
what the source of these crashes is, but it is likely that upstream
libraries such as Qt are no longer being tested on XP.
We do not have time nor resources to provide support for an OS that is
end-of-life. From 0.13.0 on, Windows XP is no longer supported. Users are
suggested to upgrade to a newer version of Windows, or install an alternative OS
that is supported.
No attempt is made to prevent installing or running the software on Windows XP,
you can still do so at your own risk, but do not expect it to work: do not
report issues about Windows XP to the issue tracker.
From 0.13.1 onwards OS X 10.7 is no longer supported. 0.13.0 was intended to work on 10.7+,
but severe issues with the libc++ version on 10.7.x keep it from running reliably.
0.13.1 now requires 10.8+, and will communicate that to 10.7 users, rather than crashing unexpectedly.
Notable changes
Segregated witness (segwit) is a soft fork that, if activated, will
allow transaction-producing software to separate (segregate) transaction
signatures (witnesses) from the part of the data in a transaction that is
covered by the txid. This provides several immediate benefits:
Elimination of unwanted transaction malleability: Segregating the witness
allows both existing and upgraded software to calculate the transaction
identifier (txid) of transactions without referencing the witness, which can
sometimes be changed by third-parties (such as miners) or by co-signers in a
multisig spend. This solves all known cases of unwanted transaction
malleability, which is a problem that makes programming Bitcoin wallet
software more difficult and which seriously complicates the design of smart
contracts for Bitcoin.
Capacity increase: Segwit transactions contain new fields that are not
part of the data currently used to calculate the size of a block, which
allows a block containing segwit transactions to hold more data than allowed
by the current maximum block size. Estimates based on the transactions
currently found in blocks indicate that if all wallets switch to using
segwit, the network will be able to support about 70% more transactions. The
network will also be able to support more of the advanced-style payments
(such as multisig) than it can support now because of the different weighting
given to different parts of a transaction after segwit activates (see the
following section for details).
Weighting data based on how it affects node performance: Some parts of
each Bitcoin block need to be stored by nodes in order to validate future
blocks; other parts of a block can be immediately forgotten (pruned) or used
only for helping other nodes sync their copy of the block chain. One large
part of the immediately prunable data are transaction signatures (witnesses),
and segwit makes it possible to give a different “weight” to segregated
witnesses to correspond with the lower demands they place on node resources.
Specifically, each byte of a segregated witness is given a weight of 1, each
other byte in a block is given a weight of 4, and the maximum allowed weight
of a block is 4 million. Weighting the data this way better aligns the most
profitable strategy for creating blocks with the long-term costs of block
validation.
Signature covers value: A simple improvement in the way signatures are
generated in segwit simplifies the design of secure signature generators
(such as hardware wallets), reduces the amount of data the signature
generator needs to download, and allows the signature generator to operate
more quickly. This is made possible by having the generator sign the amount
of bitcoins they think they are spending, and by having full nodes refuse to
accept those signatures unless the amount of bitcoins being spent is exactly
the same as was signed. For non-segwit transactions, wallets instead had to
download the complete previous transactions being spent for every payment
they made, which could be a slow operation on hardware wallets and in other
situations where bandwidth or computation speed was constrained.
Linear scaling of sighash operations: In 2015 a block was produced that
required about 25 seconds to validate on modern hardware because of the way
transaction signature hashes are performed. Other similar blocks, or blocks
that could take even longer to validate, can still be produced today. The
problem that caused this can’t be fixed in a soft fork without unwanted
side-effects, but transactions that opt-in to using segwit will now use a
different signature method that doesn’t suffer from this problem and doesn’t
have any unwanted side-effects.
Increased security for multisig: Bitcoin addresses (both P2PKH addresses
that start with a ‘1’ and P2SH addresses that start with a ‘3’) use a hash
function known as RIPEMD-160. For P2PKH addresses, this provides about 160
bits of security—which is beyond what cryptographers believe can be broken
today. But because P2SH is more flexible, only about 80 bits of security is
provided per address. Although 80 bits is very strong security, it is within
the realm of possibility that it can be broken by a powerful adversary.
Segwit allows advanced transactions to use the SHA256 hash function instead,
which provides about 128 bits of security (that is 281 trillion times as
much security as 80 bits and is equivalent to the maximum bits of security
believed to be provided by Bitcoin’s choice of parameters for its Elliptic
Curve Digital Security Algorithm [ECDSA].)
More efficient almost-full-node security Satoshi Nakamoto’s original
Bitcoin paper describes a method for allowing newly-started full nodes to
skip downloading and validating some data from historic blocks that are
protected by large amounts of proof of work. Unfortunately, Nakamoto’s
method can’t guarantee that a newly-started node using this method will
produce an accurate copy of Bitcoin’s current ledger (called the UTXO set),
making the node vulnerable to falling out of consensus with other nodes.
Although the problems with Nakamoto’s method can’t be fixed in a soft fork,
Segwit accomplishes something similar to his original proposal: it makes it
possible for a node to optionally skip downloading some blockchain data
(specifically, the segregated witnesses) while still ensuring that the node
can build an accurate copy of the UTXO set for the block chain with the most
proof of work. Segwit enables this capability at the consensus layer, but
note that Bitcoin Core does not provide an option to use this capability as
of this 0.13.1 release.
Script versioning: Segwit makes it easy for future soft forks to allow
Bitcoin users to individually opt-in to almost any change in the Bitcoin
Script language when those users receive new transactions. Features
currently being researched by Bitcoin Core contributors that may use this
capability include support for Schnorr signatures, which can improve the
privacy and efficiency of multisig transactions (or transactions with
multiple inputs), and Merklized Abstract Syntax Trees (MAST), which can
improve the privacy and efficiency of scripts with two or more conditions.
Other Bitcoin community members are studying several other improvements
that can be made using script versioning.
Activation for the segwit soft fork is being managed using BIP9
versionbits. Segwit’s version bit is bit 1, and nodes will begin
tracking which blocks signal support for segwit at the beginning of the
first retarget period after segwit’s start date of 15 November 2016. If
95% of blocks within a 2,016-block retarget period (about two weeks)
signal support for segwit, the soft fork will be locked in. After
another 2,016 blocks, segwit will activate.
For more information about segwit, please see the segwit FAQ, the
segwit wallet developers guide or BIPs 141, 143,
144, and 145. If you’re a miner or mining pool
operator, please see the versionbits FAQ for information about
signaling support for a soft fork.
Combined with the segwit soft fork is an additional change that turns a
long-existing network relay policy into a consensus rule. The
OP_CHECKMULTISIG
and OP_CHECKMULTISIGVERIFY
opcodes consume an extra
stack element (“dummy element”) after signature validation. The dummy
element is not inspected in any manner, and could be replaced by any
value without invalidating the script.
Because any value can be used for this dummy element, it’s possible for
a third-party to insert data into other people’s transactions, changing
the transaction’s txid (called transaction malleability) and possibly
causing other problems.
Since Bitcoin Core 0.10.0, nodes have defaulted to only relaying and
mining transactions whose dummy element was a null value (0x00, also
called OP_0). The null dummy soft fork turns this relay rule into a
consensus rule both for non-segwit transactions and segwit transactions,
so that this method of mutating transactions is permanently eliminated
from the network.
Signaling for the null dummy soft fork is done by signaling support
for segwit, and the null dummy soft fork will activate at the same time
as segwit.
For more information, please see BIP147.
importprunedfunds
only accepts two required arguments. Some versions accept With the 0.13.0 release, pre-built Linux ARM binaries were added to the set of
uploaded executables. Additional detail on the ARM architecture targeted by each
is provided below.
The following extra files can be found in the download directory or torrent:
bitcoin-${VERSION}-arm-linux-gnueabihf.tar.gz
: Linux binaries targeting bitcoin-${VERSION}-aarch64-linux-gnu.tar.gz
: Linux binaries targeting ARM builds are still experimental. If you have problems on a certain device or
Linux distribution combination please report them on the bug tracker, it may be
possible to resolve them. Note that the device you use must be (backward)
compatible with the architecture targeted by the binary that you use.
For example, a Raspberry Pi 2 Model B or Raspberry Pi 3 Model B (in its 32-bit
execution state) device, can run the 32-bit ARMv7-A targeted binary. However,
no model of Raspberry Pi 1 device can run either binary because they are all
ARMv6 architecture devices that are not compatible with ARMv7-A or ARMv8-A.
Note that Android is not considered ARM Linux in this context. The executables
are not expected to work out of the box on Android.
0.13.1 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
9dfa0c8
Implement NULLDUMMY softfork (BIP147) (jl2012)7a34a46
Add NULLDUMMY verify flag in bitcoinconsensus.h (jl2012)8b66659
Define start and end time for segwit deployment (sipa)526d2b0
Drop misleading option in importprunedfunds (MarcoFalke)a5ec248
Remove createwitnessaddress RPC command (jl2012)794b007
Deprecate getinfo (MarcoFalke)83ad563
Throw JSONRPCError when utxo set can not be read (MarcoFalke)b987348
getblockchaininfo help: pruneheight is the lowest, not highest, block (luke-jr)3f508ed
rpc: Generate auth cookie in hex instead of base64 (laanwj)7c2bf4b
RPC/Mining: getblocktemplate: Update and fix formatting of help (luke-jr)a9429ca
Reduce default number of blocks to check at startup (sipa)3e80ab7
Add policy: null signature for failed CHECK(MULTI)SIG (jl2012)1672225
Do not store witness txn in rejection cache (sipa)9777fe1
Add several policy limits and disable uncompressed keys for segwit scripts (jl2012)0027672
Make non-minimal OP_IF/NOTIF argument non-standard for P2WSH (jl2012)b8c79a0
Precompute sighashes (sipa)b8c79a0
Predeclare PrecomputedTransactionData as struct (sipa)42ea51a
No longer send local address in addrMe (laanwj)69d1cd2
Ignore notfound
P2P messages (laanwj)4f84082
Set jonasschnellis dns-seeder filter flag (jonasschnelli)23feab1
Remove maxuploadtargets recommended minimum (jonasschnelli)7ae6242
Fix a few cases where messages were sent after requested disconnect (theuni)fe1975a
Support for compact blocks together with segwit (sipa)2611ad7
Feeler connections to increase online addrs in the tried table (EthanHeilman)2215c22
Check for compatibility with download in FindNextBlocksToDownload (sipa)bbf379b
Fix some locks (sipa)ab295bb
Do not add random inbound peers to addrman (gmaxwell)5b4192b
Add x9 service bit support to dnsseed.bluematt.me, seed.bitcoinstats.com (TheBlueMatt, cdecker)685e4c7
Remove bogus assert on number of oubound connections. (TheBlueMatt)0dbc48a
Be more agressive in getting connections to peers with relevant services (gmaxwell)fa5b249
Allow building libbitcoinconsensus without any univalue (luke-jr)8b0bdd3
Allow building bench_bitcoin by itself (luke-jr)147003c
Add configure check for -latomic (ajtowns)ea51b0f
Berkeley DB v6 compatibility fix (netsafe)75f2065
Remove check for openssl/ec.h
(laanwj)d9f0d4e
Fix minimize and close bugs (adlawren)a37cec5
Persist the datadir after option reset (achow101)41fd852
Fix op order to append first alert (rodasmith)8e03382
Fix UI bug that could result in paying unexpected fee (jonasschnelli)7634d8e
Translate all files, even if wallet disabled (laanwj)1db3352
Fix random segfault when closing “Choose data directory” dialog (laanwj)f1c0d78
Show network/chain errors in the GUI (jonasschnelli)464dedd
Trivial cleanup of HD wallet changes (jonasschnelli)cb07f19
CDB: fix debug output (crowning-)091cdeb
Fix segwit-related wallet bug (sdaftuar)c6a6291
Add witness address to address book (instagibbs)6288659
Remove “unused” ThreadFlushWalletDB from removeprunedfunds (jonasschnelli)ae8c7df
create_cache: Delete temp dir when done (MarcoFalke)e34374e
Check legacy wallet as well (MarcoFalke)d6ebe13
Refactor RPCTestHandler to prevent TimeoutExpired (MarcoFalke)63462c2
remove root test directory for RPC tests (yurizhykin)da94272
walletbackup: Sync blocks inside the loop (MarcoFalke)bea02dc
enable rpcbind_test (yurizhykin)f70be14
Add walletdump RPC test (including HD- & encryption-tests) (jonasschnelli)a7aa3cc
Enable size accounting in mining unit tests (sdaftuar)8bb1efd
Rework hd wallet dump test (MarcoFalke)3606b6b
Update p2p-segwit.py to reflect correct behavior (instagibbs)a27cdd8
abandonconflict: Use assert_equal (MarcoFalke)6b07362
Fix SIGHASH_SINGLE bug in test_framework SignatureHash (jl2012)03b0196
Fix obvious assignment/equality error in test (JeremyRubin)cef633c
Fix broken sendcmpct test in p2p-compactblocks.py (sdaftuar)ff893aa
Add tests for compact blocks (sdaftuar)375437c
Ping regularly in p2p-segwit.py to keep connection alive (jl2012)9bbe66e
Split up slow RPC calls to avoid pruning test timeouts (sdaftuar)2a8bca4
Add bitcoin-tx JSON tests (jnewbery)1dd1783
blockstore: Switch to dumb dbm (MarcoFalke)d87227d
nulldummy.py: Don’t run unused code (MarcoFalke)eb18cc1
bitcoin-util-test.py should fail if the output file is empty (jnewbery)31ab2f8
Avoid ConnectionResetErrors during RPC tests (laanwj)cbc3fe5
Explicitly set encoding to utf8 when opening text files (laanwj)3e4abb5
Fix nulldummy test (jl2012)624a007
Fix race condition in p2p-compactblocks test (sdaftuar)1f60d45
mininode: Only allow named args in wait_until (MarcoFalke)0bee740
util: Move wait_bitcoinds() into stop_nodes() (MarcoFalke)b73f065
Fix race conditions in p2p-compactblocks.py and sendheaders.py (sdaftuar)cc6f551
Fix compact block shortids for a test case (dagurval)0e2c6bd
Target protobuf 2.6 in OS X build notes. (fanquake)b17a3f9
Document return value of networkhashps for getmininginfo RPC endpoint (jlopp)156e305
Corrected JSON typo on setban of net.cpp (sevastos)8a7d7ff
Fix incorrect file name bitcoin.qrc (bitcoinsSG)5e0dd9e
Update bips.md for Segregated Witness (fanquake)863ae74
Update git-subtree-check.sh README (MarcoFalke)486650a
Fix doxygen off-by-one comments, fix typos (MarcoFalke)c493f43
Fix two VarInt examples in serialize.h (cbarcenas)084cae9
UndoReadFromDisk works on undo files (rev), not on block files (paveljanik)0a35573
Clarify statement about parallel jobs in rpc-tests.py (isle2983)0e6d753
build: Mention curl (MarcoFalke)b09e13c
build,doc: Update for 0.13.0+ and OpenBSD 5.9 (laanwj)06d15fb
Update implemented bips for 0.13.1 (sipa)d31ac72
Specify Protobuf version 2 in paymentrequest.proto (fanquake)4ed2627
Fix wake from sleep issue with Boost 1.59.0 (fanquake)bcf3806
update bitcoin-tx to output witness data (jnewbery)4e5fc31
Fix a type error that would not compile on OSX. (JeremyRubin)30eac2d
Fix several node initialization issues (sipa)305d8ac
Use __func__
to get function name for output printing (MarcoFalke)a987431
[util] CopyrightHolders: Check for untranslated substitution (MarcoFalke)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.13.2 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.13.2/
This is a new minor version release, including various bugfixes and
performance improvements, as well as updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
Compatibility
Microsoft ended support for Windows XP on April 8th, 2014,
an OS initially released in 2001. This means that not even critical security
updates will be released anymore. Without security updates, using a bitcoin
wallet on a XP machine is irresponsible at least.
In addition to that, with 0.12.x there have been varied reports of Bitcoin Core
randomly crashing on Windows XP. It is not clear
what the source of these crashes is, but it is likely that upstream
libraries such as Qt are no longer being tested on XP.
We do not have time nor resources to provide support for an OS that is
end-of-life. From 0.13.0 on, Windows XP is no longer supported. Users are
suggested to upgrade to a newer version of Windows, or install an alternative OS
that is supported.
No attempt is made to prevent installing or running the software on Windows XP,
you can still do so at your own risk, but do not expect it to work: do not
report issues about Windows XP to the issue tracker.
From 0.13.1 onwards OS X 10.7 is no longer supported. 0.13.0 was intended to work on 10.7+,
but severe issues with the libc++ version on 10.7.x keep it from running reliably.
0.13.1 now requires 10.8+, and will communicate that to 10.7 users, rather than crashing unexpectedly.
Notable changes
When a newly created transaction failed to enter the mempool due to
the limits on chains of unconfirmed transactions the sending RPC
calls would return an error. The transaction would still be queued
in the wallet and, once some of the parent transactions were
confirmed, broadcast after the software was restarted.
This behavior has been changed to return success and to reattempt
mempool insertion at the same time transaction rebroadcast is
attempted, avoiding a need for a restart.
Transactions in the wallet which cannot be accepted into the mempool
can be abandoned with the previously existing abandontransaction RPC
(or in the GUI via a context menu on the transaction).
0.13.2 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
e591c10
[0.13 Backport #9053] IBD using chainwork instead of height and not using header timestamp (gmaxwell)5b93eee
IBD using chainwork instead of height and not using header timestamps (gmaxwell)1d048b9
Don’t return the address of a P2SH of a P2SH (jnewbery)87fbced
keypoololdest denote Unix epoch, not GMT (s-matthew-english)f82c81b
fix getnettotals RPC description about timemillis (visvirial)5bcb05d
[rpc] ParseHash: Fail when length is not 64 (MarcoFalke)f26dab7
Add option to return non-segwit serialization via rpc (instagibbs)b711390
[0.13.2] wallet/rpc backports (MarcoFalke)c365556
Complain when unknown rpcserialversion is specified (sipa)49a612f
[qa] Don’t set unknown rpcserialversion (MarcoFalke)ce0d817
[mempool] Fix relaypriority calculation error (maiiz)0a4aa87
[0.13 backport #9239] Disable fee estimates for a confirm target of 1 block (morcos)0c09d9f
Send tip change notification from invalidateblock (ryanofsky)9ef3875
Add missing cs_main lock to ::GETBLOCKTXN processing (TheBlueMatt)94531b5
torcontrol: Explicitly request RSA1024 private key (laanwj)2cad5db
Compact Block Tweaks (rebase of #8235) (sipa)286e548
Fixes for p2p-compactblocks.py test timeouts on travis (#8842) (ryanofsky)4c71fc4
Decouple peer-processing-logic from block-connection-logic (TheBlueMatt)6fe3981
net: don’t send feefilter messages before the version handshake is complete (theuni)ca1fd75
Make orphan parent fetching ask for witnesses (gmaxwell)3a3bcbf
Use RelevantServices instead of node_network in AttemptToEvict (gmaxwell)9460771
[0.13 backport #9026] Fix handling of invalid compact blocks (sdaftuar)03b6f62
[0.13 backport #9352] Attempt reconstruction from all compact block announcements (sdaftuar)b96a8f7
Always add default_witness_commitment with GBT client support (sipa)28d0f22
Fix calculation of number of bound sockets to use (TheBlueMatt)da5a16b
Always drop the least preferred HB peer when adding a new one (gmaxwell)d1b4da9
build: fix qt5.7 build under macOS (theuni)a0f7ece
Update for OpenSSL 1.1 API (gmaxwell)396c405
Prevent FD_SETSIZE error building on OpenBSD (ivdsangen)6f86b53
Make warnings label selectable (jonasschnelli) (MarcoFalke)6d70a73
Fix coincontrol sort issue (jonasschnelli)5f3a12c
Use correct conversion function for boost::path datadir (laanwj)4a974b2
Update bitcoin-qt.desktop (s-matthew-english)dc46b10
Plug many memory leaks (laanwj)35174a0
Make RelayWalletTransaction attempt to AcceptToMemoryPool (gmaxwell)43bcfca
Bugfix: Fundrawtransaction: don’t terminate when keypool is empty (jonasschnelli)f5d606e
Return txid even if ATMP fails for new transaction (sipa)fe39f26
Prefer coins that have fewer ancestors, sanity check txn before ATMP (instagibbs)eca9b46
Wait for specific block announcement in p2p-compactblocks (ryanofsky)dccdc3a
Fix use-after-free in scheduler tests (laanwj)3107280
Add assert_raises_message to check specific error message (mrbandrews)29435db
0.13.2 Backports (MarcoFalke)1d4c884
Increase wallet-dump RPC timeout (ryanofsky)ecd7db5
Handle zombies and cluttered tmpdirs (MarcoFalke)387ec9d
Add script tests for FindAndDelete in pre-segwit and segwit scripts (jl2012)eebc699
bench: Fix subtle counting issue when rescaling iteration count (laanwj)094848b
Calculate size and weight of block correctly in CreateNewBlock() (jnewbery)40169dc
Set minimum required Boost to 1.47.0 (fanquake)a710a43
Improvement of documentation of command line parameter ‘whitelist’ (wodry)106da69
Allow bitcoin-tx to create v2 transactions (btcdrak)12428b4
add software-properties-common (sigwo)08d1c90
bug: Missed one “return false” in recent refactoring in #9067 (UdjinM6)f85ee01
Fix exit codes (UdjinM6)fb987b3
[0.13] Update secp256k1 subtree (MarcoFalke)b172377
Remove calls to getaddrinfo_a (TheBlueMatt)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.14.0 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.14.0/
This is a new major version release, including new features, various bugfixes
and performance improvements, as well as updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
Compatibility
Bitcoin Core is extensively tested on multiple operating systems using
the Linux kernel, macOS 10.8+, and Windows Vista and later.
Microsoft ended support for Windows XP on April 8th, 2014,
No attempt is made to prevent installing or running the software on Windows XP, you
can still do so at your own risk but be aware that there are known instabilities and issues.
Please do not report issues about Windows XP to the issue tracker.
Bitcoin Core should also work on most other Unix-like systems but is not
frequently tested on them.
Notable changes
Validation speed and network propagation performance have been greatly
improved, leading to much shorter sync and initial block download times.
Bitcoin Core has supported automatically pruning the blockchain since 0.11. Pruning
the blockchain allows for significant storage space savings as the vast majority of
the downloaded data can be discarded after processing so very little of it remains
on the disk.
Manual block pruning can now be enabled by setting -prune=1
. Once that is set,
the RPC command pruneblockchain
can be used to prune the blockchain up to the
specified height or timestamp.
getinfo
DeprecatedThe getinfo
RPC command has been deprecated. Each field in the RPC call
has been moved to another command’s output with that command also giving
additional information that getinfo
did not provide. The following table
shows where each field has been moved to:
|getinfo
field | Moved to |
|——————|——————————————-|
"version"
| getnetworkinfo()["version"]
"protocolversion"
| getnetworkinfo()["protocolversion"]
"walletversion"
| getwalletinfo()["walletversion"]
"balance"
| getwalletinfo()["balance"]
"blocks"
| getblockchaininfo()["blocks"]
"timeoffset"
| getnetworkinfo()["timeoffset"]
"connections"
| getnetworkinfo()["connections"]
"proxy"
| getnetworkinfo()["networks"][0]["proxy"]
"difficulty"
| getblockchaininfo()["difficulty"]
"testnet"
| getblockchaininfo()["chain"] == "test"
"keypoololdest"
| getwalletinfo()["keypoololdest"]
"keypoolsize"
| getwalletinfo()["keypoolsize"]
"unlocked_until"
| getwalletinfo()["unlocked_until"]
"paytxfee"
| getwalletinfo()["paytxfee"]
"relayfee"
| getnetworkinfo()["relayfee"]
"errors"
| getnetworkinfo()["warnings"]
Previously the ZeroMQ notification system was unavailable on Windows
due to various issues with ZMQ. These have been fixed upstream and
now ZMQ can be used on Windows. Please see this document for
help with using ZMQ in general.
The ability to nest RPC commands has been added to the debug console. This
allows users to have the output of a command become the input to another
command without running the commands separately.
The nested RPC commands use bracket syntax (i.e. getwalletinfo()
) and can
be nested (i.e. getblock(getblockhash(1))
). Simple queries can be
done with square brackets where object values are accessed with either an
array index or a non-quoted string (i.e. listunspent()[0][txid]
). Both
commas and spaces can be used to separate parameters in both the bracket syntax
and normal RPC command syntax.
A RPC command and GUI toggle have been added to enable or disable all p2p
network activity. The network status icon in the bottom right hand corner
is now the GUI toggle. Clicking the icon will either enable or disable all
p2p network activity. If network activity is disabled, the icon will
be grayed out with an X on top of it.
Additionally the setnetworkactive
RPC command has been added which does
the same thing as the GUI icon. The command takes one boolean parameter,
true
enables networking and false
disables it.
When Bitcoin Core is out-of-sync on startup, a semi-transparent information
layer will be shown over top of the normal display. This layer contains
details about the current sync progress and estimates the amount of time
remaining to finish syncing. This layer can also be hidden and subsequently
unhidden by clicking on the progress bar at the bottom of the window.
Commands sent over the JSON-RPC interface and through the bitcoin-cli
binary
can now use named arguments. This follows the JSON-RPC specification
for passing parameters by-name with an object.
bitcoin-cli
has been updated to support this by parsing name=value
arguments
when the -named
option is given.
Some examples:
src/bitcoin-cli -named help command="help"
src/bitcoin-cli -named getblockhash height=0
src/bitcoin-cli -named getblock blockhash=000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
src/bitcoin-cli -named sendtoaddress address="(snip)" amount="1.0" subtractfeefromamount=true
The order of arguments doesn’t matter in this case. Named arguments are also
useful to leave out arguments that should stay at their default value. The
rarely-used arguments comment
and comment_to
to sendtoaddress
, for example, can
be left out. However, this is not yet implemented for many RPC calls, this is
expected to land in a later release.
The RPC server remains fully backwards compatible with positional arguments.
A new startup option, -walletrbf
, has been added to allow users to have all
transactions sent opt into RBF support. The default value for this option is
currently false
, so transactions will not opt into RBF by default. The new
bumpfee
RPC can be used to replace transactions that opt into RBF.
The debug console maintains a history of previously entered commands that can be
accessed by pressing the Up-arrow key so that users can easily reuse previously
entered commands. Commands which have sensitive information such as passphrases and
private keys will now have a (...)
in place of the parameters when accessed through
the history.
The mempool will be saved to the data directory prior to shutdown
to a mempool.dat
file. This file preserves the mempool so that when the node
restarts the mempool can be filled with transactions without waiting for new transactions
to be created. This will also preserve any changes made to a transaction through
commands such as prioritisetransaction
so that those changes will not be lost.
The Alert System was disabled and deprecated in Bitcoin Core 0.12.1 and removed in 0.13.0.
The Alert System was retired with a maximum sequence final alert which causes any nodes
supporting the Alert System to display a static hard-coded “Alert Key Compromised” message which also
prevents any other alerts from overriding it. This final alert is hard-coded into this release
so that all old nodes receive the final alert.
After resetting the options by clicking the Reset Options
button
in the options dialog or with the -resetguioptions
startup option,
the user will be prompted to choose the data directory again. This
is to ensure that custom data directories will be kept after the
option reset which clears the custom data directory set via the choose
datadir dialog.
Multiple peers can now be selected in the list of peers in the debug
window. This allows for users to ban or disconnect multiple peers
simultaneously instead of banning them one at a time.
An indicator has been added to the bottom right hand corner of the main
window to indicate whether the wallet being used is a HD wallet. This
icon will be grayed out with an X on top of it if the wallet is not a
HD wallet.
importprunedfunds
only accepts two required arguments. Some versions accept
an optional third arg, which was always ignored. Make sure to never pass more
than two arguments.
The first boolean argument to getaddednodeinfo
has been removed. This is
an incompatible change.
RPC command getmininginfo
loses the “testnet” field in favor of the more
generic “chain” (which has been present for years).
A new RPC command preciousblock
has been added which marks a block as
precious. A precious block will be treated as if it were received earlier
than a competing block.
A new RPC command importmulti
has been added which receives an array of
JSON objects representing the intention of importing a public key, a
private key, an address and script/p2sh
Use of getrawtransaction
for retrieving confirmed transactions with unspent
outputs has been deprecated. For now this will still work, but in the future
it may change to only be able to retrieve information about transactions in
the mempool or if txindex
is enabled.
A new RPC command getmemoryinfo
has been added which will return information
about the memory usage of Bitcoin Core. This was added in conjunction with
optimizations to memory management. See Pull #8753
for more information.
A new RPC command bumpfee
has been added which allows replacing an
unconfirmed wallet transaction that signaled RBF (see the -walletrbf
startup option above) with a new transaction that pays a higher fee, and
should be more likely to get confirmed quickly.
GET /rest/getutxos//-/-
/.../-.
) responses were changed to return status HTTP_BAD_REQUEST
(400) instead of HTTP_INTERNAL_SERVER_ERROR
(500) Since the changes in 0.12 to automatically limit the size of the mempool and improve the performance of block creation in mining code it has not been important for relay nodes or miners to set -minrelaytxfee
. With this release the following concepts that were tied to this option have been separated out:
- incremental relay fee used for calculating BIP 125 replacement and mempool limiting. (1000 satoshis/kB)
- calculation of threshold for a dust output. (effectively 3 * 1000 satoshis/kB)
- minimum fee rate of a package of transactions to be included in a block created by the mining code. If miners wish to set this minimum they can use the new -blockmintxfee
option. (defaults to 1000 satoshis/kB)
The -minrelaytxfee
option continues to exist but is recommended to be left unset.
Since 0.13.2 fee estimation for a confirmation target of 1 block has been
disabled. The fee slider will no longer be able to choose a target of 1 block.
This is only a minor behavior change as there was often insufficient
data for this target anyway. estimatefee 1
will now always return -1 and
estimatesmartfee 1
will start searching at a target of 2.
The default target for fee estimation is changed to 6 blocks in both the GUI
(previously 25) and for RPC calls (previously 2).
Estimation of “priority” needed for a transaction to be included within a target
number of blocks has been removed. The RPC calls are deprecated and will either
return -1 or 1e24 appropriately. The format for fee_estimates.dat
has also
changed to no longer save these priority estimates. It will automatically be
converted to the new format which is not readable by prior versions of the
software.
Support for “priority” (coin age) transaction sorting for mining is
considered deprecated in Core and will be removed in the next major version.
This is not to be confused with the prioritisetransaction
RPC which will remain
supported by Core for adding fee deltas to transactions.
Peers manually added through the -addnode
option or addnode
RPC now have their own
limit of eight connections which does not compete with other inbound or outbound
connection usage and is not subject to the limitation imposed by the -maxconnections
option.
New connections to manually added peers are performed more quickly.
A significant portion of the initial block download time is spent verifying
scripts/signatures. Although the verification must pass to ensure the security
of the system, no other result from this verification is needed: If the node
knew the history of a given block were valid it could skip checking scripts
for its ancestors.
A new configuration option ‘assumevalid’ is provided to express this knowledge
to the software. Unlike the ‘checkpoints’ in the past this setting does not
force the use of a particular chain: chains that are consistent with it are
processed quicker, but other chains are still accepted if they’d otherwise
be chosen as best. Also unlike ‘checkpoints’ the user can configure which
block history is assumed true, this means that even outdated software can
sync more quickly if the setting is updated by the user.
Because the validity of a chain history is a simple objective fact it is much
easier to review this setting. As a result the software ships with a default
value adjusted to match the current chain shortly before release. The use
of this default value can be disabled by setting -assumevalid=0
Before 0.14, fundrawtransaction
was by default wallet stateless. In
almost all cases fundrawtransaction
does add a change-output to the
outputs of the funded transaction. Before 0.14, the used keypool key was
never marked as change-address key and directly returned to the keypool
(leading to address reuse). Before 0.14, calling getnewaddress
directly after fundrawtransaction
did generate the same address as
the change-output address.
Since 0.14, fundrawtransaction does reserve the change-output-key from
the keypool by default (optional by setting reserveChangeKey
, default =
true
)
Users should also consider using getrawchangeaddress()
in conjunction
with fundrawtransaction
’s changeAddress
option.
-maxmempool
option) -dbcache
option) borrows memory from the mempool -dbcache
0.14.0 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, minor refactors and string updates. For convenience
in locating the code changes and accompanying discussion, both the pull request
and git merge commit are mentioned.
b77bb95
httpserver: drop boost dependency (theuni)f061415
rest.cpp: change HTTP_INTERNAL_SERVER_ERROR
to HTTP_BAD_REQUEST
(djpnewton)91990ee
Make the dummy argument to getaddednodeinfo optional (sipa)bb843ad
bitcoin-cli: More detailed error reporting (laanwj)7f71a3c
Add preciousblock RPC (sipa)97c7f73
Give RPC commands more information about the RPC request (jonasschnelli)5d2c8e5
Augment getblockchaininfo bip9_softforks data (mruddy)0e22855
importmulti: Avoid using boost::variant::operator!=, which is only in newer boost versions (luke-jr)4d8558a
Getrawtransaction should take a bool for verbose (jnewbery)5754e03
Add support for JSON-RPC named arguments (laanwj)2456a83
Deprecate non-txindex getrawtransaction and better warning (sipa)a65ced1
Return height of last block pruned by pruneblockchain RPC (ryanofsky)7cb024e
Add ‘subtractFeeFromAmount’ option to ‘fundrawtransaction’ (dooglus)2ef52d3
Simplified bumpfee
command (mrbandrews)727a798
Bug-fix: listsinceblock: use fork point as reference for blocks in reorg’d chains (kallewoof)7bfb770
Bumpfee: bugfixes for error handling and feerate calculation (sdaftuar)8d6447e
Set correct metadata on bumpfee wallet transactions (ryanofsky)40f7e27
Better handle invalid parameters to signrawtransaction (TheBlueMatt)edc9e63
Require timestamps for importmulti keys (ryanofsky)d8e8b06
Use importmulti timestamp when importing watch only keys (on top of #9682) (ryanofsky)7a93af8
Return error when importmulti called with invalid address (ryanofsky)ad168ef
Add two hour buffer to manual pruning (morcos)9828f9a
Use 2 hour grace period for key timestamps in importmulti rescans (ryanofsky)48d7e0d
Mark the minconf parameter to move as ignored (sipa)861cb0c
Bugfix: RPC/Mining: GBT should return 1 MB sizelimit before segwit activates (luke-jr)9072395
Return errors from importmulti if complete rescans are not successful (ryanofsky)37d83bb
Consensus: Remove ISM (NicolasDorier)618c9dd
Treat high-sigop transactions as larger rather than rejecting them (sipa)14b7b3f
wallet, policy: ParameterInteraction: Don’t allow 0 fee (MarcoFalke)9bdf526
A few mempool removal optimizations (sipa)101c642
Store mempool and prioritization data to disk (sipa)3c03dc2
Remove priority estimation (morcos)fb15610
Remove unused variable UNLIKELY_PCT
from fees.h (fanquake)434e683
Unset fImporting for loading mempool (morcos)b9a87b4
Set DEFAULT_LIMITFREERELAY
= 0 kB/minute (MarcoFalke)3fbf079
Disable fee estimates for 1-block target (morcos)1eef038
Bump transaction version default to 2 (btcdrak)b99a093
Batch construct batches (sipa)5a70572
Prefer coins that have fewer ancestors, sanity check txn before ATMP (instagibbs)1ce7ede
Fix a bug if the min fee is 0 for FeeFilterRounder (morcos)0fc1c31
Add test for -walletrejectlongchains
(morcos)7dac1e5
Safer modify new coins (morcos)a72f76c
Increase mempool expiry time to 2 weeks (morcos)c252685
Share unused mempool memory with coincache (sipa)f646275
Improve fee estimation (morcos)46b249e
Allow shutdown during LoadMempool, dump only when necessary (jonasschnelli)8c87f17
Assert FRESH validity in CCoinsViewCache::BatchWrite (ryanofsky)e2e624d
Manual block file pruning (mrbandrews)0595042
Fix use-after-free in CTxMemPool::removeConflicts() (sdaftuar)dd98f04
Separate different uses of minimum fees (morcos)71148b8
bugfix save feeDelta instead of priorityDelta in DumpMempool (morcos)4a1dc35
Notify on removal (morcos)9b4d267
Exclude RBF replacement txs from fee estimation (morcos)e2a1a1e
Fix some locks (sipa)6898213
Performance Regression Fix: Pre-Allocate txChanged vector (JeremyRubin)744d265
c++11: Use std::unique_ptr for block creation (domob1812)7490ae8
Make CBlock a vector of shared_ptr of CTransactions (sipa)93566e0
Move orphan processing to ActivateBestChain (TheBlueMatt)46904ee
Make CTransaction actually immutable (sipa)a1dcf2e
Remove txConflicted (morcos)e8cfe1e
Inline CTxInWitness inside CTxIn (sipa)2db4cbc
Make CScript (and prevector) c++11 movable (sipa)ce5c1f4
Release cs_main before calling ProcessNewBlock, or processing headers (cmpctblock handling) (sdaftuar)869781c
A few more CTransactionRef optimizations (sipa)9c9af5a
Use recent-rejects, orphans, and recently-replaced txn for compact-block-reconstruction (TheBlueMatt)3972a8e
Read/write mempool.dat as a binary (paveljanik)1030fa7
Turn net structures into dumb storage classes (theuni)026c6ed
Feeler connections to increase online addrs in the tried table (EthanHeilman)53f8f22
Move AdvertiseLocal debug output to net category (Mirobit)84decb5
Check for compatibility with download in FindNextBlocksToDownload (sipa)5b2ea29
Do not add random inbound peers to addrman (gmaxwell)6423116
Begin encapsulation (theuni)881d7ea
only delete CConnman if it’s been created (theuni)f07424a
Fix maxuploadtarget setting (theuni)d2e4655
Do not set an addr time penalty when a peer advertises itself (gmaxwell)9bc6a6b
Consistent checksum handling (laanwj)1230890
Report NodeId in misbehaving debug (rebroad)3cf496d
Don’t hold cs_main when calling ProcessNewBlock from a cmpctblock (TheBlueMatt)e1d1f57
Make connect=0 disable automatic outbound connections (gmaxwell)fcf61b8
Make a few values immutable, and use deterministic randomness for the localnonce (theuni)3665483
Decouple peer-processing-logic from block-connection-logic (#2) (TheBlueMatt)c8c572f
have CConnman handle message sending (theuni)1e50d22
Allow filterclear messages for enabling TX relay only (rebroad)9f554e0
Hash P2P messages as they are received instead of at process-time (TheBlueMatt)dc6b940
Fix handling of invalid compact blocks (sdaftuar)ab914a6
Network activity toggle (luke-jr)62af164
fNetworkActive is not protected by a lock, use an atomic (jonasschnelli)0c577f2
Remove block-request logic from INV message processing (TheBlueMatt)791b58d
Do not fully sort all nodes for addr relay (sipa)76fec09
Decouple CConnman and message serialization (theuni)3bf06e9
Remove fNetworkNode and pnodeLocalHost (gmaxwell)a7f7651
Attempt reconstruction from all compact block announcements (sdaftuar)a55716a
Break addnode out from the outbound connection limits (gmaxwell)2742568
Add unstored orphans with rejected parents to recentRejects (morcos)8b66bf7
Massive speedup. Net locks overhaul (theuni)3908fc4
Relay compact block messages prior to full block connection (TheBlueMatt)8a445c5
Set peers as HB peers upon full block validation (instagibbs)6696b46
Wake message handling thread when we receive a new block (TheBlueMatt)82274c0
Split CNode::cs_vSend: message processing and message sending (TheBlueMatt)3f9f962
Consistently use GetTimeMicros() for inactivity checks (sdaftuar)fd70211
Send final alert message to older peers after connecting (gmaxwell)36966a1
Clean up a few CConnman cs_vNodes/CNode things (TheBlueMatt)4966917
Fix remaining net assertions (theuni)7821db3
Fix super-unlikely race introduced in 236618061a445d2cb11e72 (TheBlueMatt)33f3b21
Remove bitseed.xf2.org form the dns seed list (jonasschnelli)2447c10
Fix socket close race (theuni)a06ede9
Clean up all known races/platform-specific UB at the time PR was opened (TheBlueMatt)b08656e
Disconnect peers which we do not receive VERACKs from within 60 sec (TheBlueMatt)e87ce95
Fix banning and disallow sending messages before receiving verack (theuni)09c4fd1
Fix rounding privacy leak introduced in #9260 (TheBlueMatt)9346f84
Decouple peer-processing-logic from block-connection-logic (#3) (TheBlueMatt)047ded0
Move static global randomizer seeds into CConnman (sipa)d9ae1ce
net: drop boost::thread_group (theuni)d04aeba
Fix block-connection performance regression (TheBlueMatt)d52ce89
Remove no longer needed check for premature v2 txs (morcos)b68685a
Remove unused CDiskBlockPos*
argument from ProcessNewBlock (TheBlueMatt)b83264d
Better SigCache Implementation (JeremyRubin)e126d0c
Replace FindLatestBefore used by importmulti with FindEarliestAtLeast (gmaxwell)812714f
Introduce assumevalid setting to skip validation presumed valid scripts (gmaxwell)7884956
Don’t overwrite validation state with corruption check (morcos)1e92e04
Harden against mistakes handling invalid blocks (sdaftuar)3c02b95
Update nMinimumChainWork and defaultAssumeValid (gmaxwell)19b0f33
Precompute sighashes (sipa)1825a03
Avoid VLA in hash.h (sipa)6caf3ee
ZeroMQ 4.1.5 && ZMQ on Windows (fanquake)b40e19c
Remove check for openssl/ec.h
(laanwj)de07fdc
Include instructions to extract Mac OS X SDK on Linux using 7zip and SleuthKit (luke-jr)7b98895
Easy to use gitian building script (achow101)f256843
build,doc: Update for 0.13.0+ and OpenBSD 5.9 (laanwj)2663e51
depends: Remove Qt46 package (fanquake)8ea4440
Remove unused Qt 4.6 patch (droark)7e9ab95
Install manpages via make install, also add some autogenerated manpages (nomnombtc)ca69ef4
contrib: delete qt_translations.py
(MarcoFalke)64dc645
share: remove qt/protobuf.pri (MarcoFalke)3166dff
depends: expat 2.2.0, ccache 3.3.1, fontconfig 2.12.1 (fanquake)b694b0d
travis: cross-mac: explicitly enable gui (MarcoFalke)dc64141
depends: Fix Qt compilation with Xcode 8 (fanquake)489a6ab
depends: Add libevent compatibility patch for windows (laanwj)c841816
depends: Boost 1.61.0 (fanquake)f560d95
Do not include env_win.cc
on non-Windows systems (paveljanik)e077e00
Reorder Windows gitian build order to match Linux (Michagogo)078900d
new var DIST_CONTRIB
adds useful things for packagers from contrib (nomnombtc)21e6c6b
depends: Set OSX_MIN_VERSION
to 10.8 (fanquake)018a4eb
Bugfix: Correctly replace generated headers and fail cleanly (luke-jr)a8b2a82
Add compile and link options echo to configure (jonasschnelli)03d85f6
Include cuckoocache header in Makefile (MarcoFalke)bebe369
Fix linker error when configured with –enable-lcov (droark)53442af
Fix ‘make deploy’ for OSX (jonasschnelli)7014506
Let autoconf detect presence of EVP_MD_CTX_new
(luke-jr)bbf193f
Fix qt distdir builds (theuni)ca615e6
depends: libevent 2.1.7rc (fanquake)f9117f2
depends: Dependency updates for 0.14.0 (fanquake)01c4576
depends: Qt 5.7.1 (fanquake)5ac6687
depends: Fix QT build on OSX (fanquake)720b579
depends: Fix cross build for qt5.7 (theuni)6a55515
Add options to override BDB cflags/libs (laanwj)4e1567a
Enable (and check for) 64-bit ASLR on Windows (laanwj)476cc47
Selectively suppress deprecation warnings (jonasschnelli)6d61a2b
release: bump gitian descriptors for a new 0.14 package cache (theuni)749fe95
build: add –enable-werror and warn on vla’s (theuni)99fd85c
build: force a c++ standard to be specified (theuni)c503863
Remove URLs from About dialog translations (fanquake)36404ae
Fix random segfault when closing “Choose data directory” dialog (laanwj)2468292
Show wallet HD state in statusbar (jonasschnelli)62a5a8a
Remove Priority from coincontrol dialog (MarcoFalke)0606f95
Show network/chain errors in the GUI (jonasschnelli)c19f8a4
Show XTHIN in GUI (rebroad)4335d5a
RPC-Console: support nested commands and simple value queries (jonasschnelli)6052d50
Show transaction size in transaction details window (Cocosoft)fec6af7
WalletModel: Expose disablewallet (MarcoFalke)24f72e9
Add out-of-sync modal info layer (jonasschnelli)b2fec4e
Fix ban from qt console (theuni)bf8e68a
sync-overlay: Don’t block during reindex (MarcoFalke)088d1f4
sync-overlay: Don’t show progress twice (MarcoFalke)47ace42
Add “Copy URI” to payment request context menu (luke-jr)f628d9a
Display minimum ping in debug window (rebroad)3e942a7
Qt refactors to better abstract wallet access (luke-jr)7b1bfa3
Use pindexBestHeader instead of setBlockIndexCandidates for NotifyHeaderTip() (jonasschnelli)d2143dc
Overhaul smart-fee slider, adjust default confirmation target (jonasschnelli)273bde3
Return useful error message on ATMP failure (MarcoFalke)4e57824
Reduce ambiguity of warning message (rebroad)e984730
Multiple Selection for peer and ban tables (achow101)924745d
Make network disabled icon 50% opaque (MarcoFalke)ac489b2
Mention the new network toggle functionality in the tooltip (paveljanik)4d955fc
Show progress overlay when clicking spinner icon (laanwj)e15660c
Show ModalOverlay by pressing the progress bar, allow hiding (jonasschnelli)fde7d99
Fix missed change to WalletTx structure (morcos)2044e37
Bugfix: Qt/RPCConsole: Put column enum in the right places (luke-jr)9851a84
layoutAboutToChange signal is called layoutAboutToBeChanged (laanwj)47e6a19
Console: add security warning (jonasschnelli)db45ad8
Console: allow empty arguments (jonasschnelli)6dc4c43
Qt RPC console: history sensitive-data filter, and saving input line when browsing history (luke-jr)649cf5f
Do not translate tilde character (MarcoFalke)123ea73
Select more files for translation (MarcoFalke)fd7d8c7
CoinControl: Allow non-wallet owned change addresses (jonasschnelli)b250686
Improve progress display during headers-sync and peer-finding (jonasschnelli)5086452
Use nPowTargetSpacing constant (MarcoFalke)d9e4d1d
Fix transaction details output-index to reflect vout index (jonasschnelli)36f9d3a
Qt/Intro: Various fixes (luke-jr)ec66d06
devtools: Handle Qt formatting characters edge-case in update-translations.py (laanwj)a441db0
Bugfix: Qt/Options: Restore persistent “restart required” notice (luke-jr)7d75a5a
Fix segfault crash when shutdown the GUI in disablewallet mode (jonasschnelli)b9c1cd8
Remove CWalletDB*
parameter from CWallet::AddToWallet (pstratem)c7e05b3
Make CWallet::fFileBacked private (pstratem)f916700
Move CWallet::setKeyPool to private section of CWallet (pstratem)0168019
Remove unused code/conditions in ReadAtCursor (jonasschnelli)37ac678
Add option to opt into full-RBF when sending funds (rebase, original by petertodd) (laanwj)a5b20ed
init, wallet: ParameterInteraction() iff wallet enabled (MarcoFalke)02ac669
init: Get rid of some ENABLE_WALLET
(MarcoFalke)a1f8d3e
Wallet: Remove last external reference to CWalletDB (pstratem)886e8c9
init: Get rid of fDisableWallet (MarcoFalke)ab0b411
Add high transaction fee warnings (MarcoFalke)940748b
Move key derivation logic from GenerateNewKey to DeriveNewChildKey (pstratem)e10af96
Set fLimitFree = true (MarcoFalke)c587577
Fix init segfault where InitLoadWallet() calls ATMP before genesis (TheBlueMatt)f2d7056
Add importmulti RPC call (pedrobranco)0dcb888
Return useful error message on ATMP failure (instagibbs)f8723d2
Locked memory manager (laanwj)a4fd8df
Move CWalletDB::ReorderTransactions to CWallet (pstratem)6a1343f
Refactor wallet/init interaction (Reaccept wtx, flush thread) (jonasschnelli)ed0cc50
Change default confirm target from 2 to 6 (laanwj)d1871da
Declare wallet.h functions inline (sipa)f54e460
Make strWalletFile const (jonasschnelli)5ea5e04
Remove unnecessary calls to CheckFinalTx (jonasschnelli)c01f16a
SendMoney: use already-calculated balance (instagibbs)a336d13
Flush wallet after abandontransaction (morcos)38e4887
Addition of ImmatureCreditCached to MarkDirty() (spencerlievens)510c0d9
SetMerkleBranch: remove unused code, remove cs_main lock requirement (jonasschnelli)2a524b8
Wallet refactoring leading up to multiwallet (luke-jr)a7d55c9
Do not perform ECDSA signing in the fee calculation inner loop (gmaxwell)12e3112
Smarter coordination of change and fee in CreateTransaction (morcos)fb75cd0
fundrawtransaction: Keep change-output keys by default, make it optional (jonasschnelli)923dc44
Add missing mempool lock for CalculateMemPoolAncestors (TheBlueMatt)02464da
Make nWalletDBUpdated atomic to avoid a potential race (pstratem)f8af89a
Prevent “overrides a member function but is not marked ‘override’” warnings (laanwj)e43a585
Add missing cs_wallet lock that triggers new lock held assertion (ryanofsky)3097ea4
Disable free transactions when relay is disabled (MarcoFalke)d2c9e4d
Wallet incremental fee (morcos)40c754c
Remove importmulti always-true check (ryanofsky)6e5e5ab
Tests: Use portable #! in python scripts (/usr/bin/env) (ChoHag)740cff5
Use single cache dir for chains (MarcoFalke)21857d2
Replace rpc_wallet_tests.cpp
with python RPC unit tests (pstratem)ddc3080
Minimal fix to slow prevector tests as stopgap measure (JeremyRubin)666eaf0
Address Travis spurious failures (theuni)e31a43c
pull-tester: Only print output when failed (MarcoFalke)14e8f99
tests: Add exception error message for JSONRPCException (laanwj)ef0801b
test: Add option to run bitcoin-util-test.py manually (jnewbery)e66cc1d
Add some verbose logging to bitcoin-util-test.py (jnewbery)0329511
Send segwit-encoded blocktxn messages in p2p-compactblocks (TheBlueMatt)74dc388
Add microbenchmarks to profile more code paths (ryanofsky)6a8be7b
test: Add format-dependent comparison to bctest (laanwj)774db92
Add logging to bitcoin-util-test.py (jnewbery)c9bdf9a
Merge doc/unit-tests.md
into src/test/README.md
(laanwj)ed64bce
Clean up bctest.py and bitcoin-util-test.py (jnewbery)b8f43e3
test: Fix test_random includes (MarcoFalke)faec09b
Testing: Include fRelay in mininode version messages (jnewbery)e536499
Rework sync_*
and preciousblock.py (MarcoFalke)71bc39e
Remove duplicatable duplicate-input check from CheckTransaction (TheBlueMatt)b422913
sync_blocks cleanup (ryanofsky)4333b1c
proxy_test: Calculate hardcoded port numbers (MarcoFalke)e662d28
Make test constant consistent with consensus.h (btcdrak)0de7fd3
Change sync_blocks to pick smarter maxheight (on top of #9196) (ryanofsky)97ec6e5
tx_valid: re-order inputs to how they are encoded (dcousens)e56cf67
bench: Add support for measuring CPU cycles (laanwj)5412c08
unification of Bloom filter representation (s-matthew-english)d7ba4a2
Dump debug logs on travis failures (sdaftuar)9e4bb31
Get rid of duplicate code (MarcoFalke)919db03
Use cached utxo set to fix performance regression (MarcoFalke)ea33f19
Some minor testing cleanups (morcos)8601784
Remove mapOrphanTransactionsByPrev from DoS_tests (sipa)76fcd9d
Wallet needs to stay unlocked for whole test (morcos)5bc209c
Resurrect pstratem’s “Simple fuzzing framework” (laanwj)c6fd923
Add test for rescan feature of wallet key import RPCs (ryanofsky)b416095
Make fuzzer actually test CTxOutCompressor (sipa)0698639
test: Add CCoinsViewCache Access/Modify/Write tests (ryanofsky)0f921e6
Re-enable a blank v1 Tx JSON test (droark)dbc8a8c
Removed unused variable in test, fixing warning (ryanofsky)dce853e
test: Include tx data in EXTRA_DIST
(MarcoFalke)02e5308
test: Include tx data in EXTRA_DIST
(MarcoFalke)054d664
Basic CCheckQueue Benchmarks (JeremyRubin)0b96abc
test: Avoid potential NULL pointer dereference in addrman_tests.cpp
(practicalswift)f895023
Increase a sync_blocks timeout in pruning.py (sdaftuar)a7ea2f8
Actually test assertions in pruning.py (MarcoFalke)e99f0d7
Skip RAII event tests if libevent is built without event_set_mem_functions
(luke-jr)fc67cd2
Init ECC context for test_bitcoin_fuzzy
(gmaxwell)d304fef
bench: Fix initialization order in registration (laanwj)b860915
Fix RPC failure testing (jnewbery)43e8150
Align struct COrphan definition (sipa)599c69a
Fix pruning test broken by 2 hour manual prune window (ryanofsky)260c71c
qa: Check return code when stopping nodes (MarcoFalke)50953c2
tests: Fix dangling pwalletMain pointer in wallet tests (laanwj)eddaa6b
[qa] Make import-rescan.py watchonly check reliable (ryanofsky)806b9e7
Clarify witness branches in transaction.h serialization (dcousens)0306978
Documentation: Building on Windows with WSL (pooleja)c98f6b3
Correct waitforblockheight example help text (fanquake)041331e
Added missing colons in when running help command (anditto)870cd2b
Add documentation for CWalletTx::fFromMe member (ryanofsky)0b73807
Various RPC help outputs updated (Mirobit)07421cf
Clarify getbalance help string to explain interaction with bumpfee (ryanofsky)e30d928
Clarify listunspent amount description (instagibbs)d65a13b
Updated listsinceblock rpc documentation (accraze)ce43630
rpc: Fix transaction size comments and RPC help text (jnewbery)bbd9740
Doc: Add issue template (AmirAbrams)85d4e21
Add default port numbers to REST doc (djpnewton)89de153
build: Mention curl (MarcoFalke)9da7366
Mandatory copyright agreement (achow101)7b05af6
Add privacy recommendation when running hidden service (laanwj)caa2f10
Update the Windows build notes (droark)f928050
Rework docs (MarcoFalke)61d191f
Improve GitHub issue template (fanquake)279bbad
Add missing autogen to example builds (AmirAbrams)d270c30
Add build instructions for FreeBSD (laanwj)c71a654
Update Doxygen configuration file (fanquake)fa1f944
Move comments above bash command in build-unix (AmirAbrams)c4522e7
Improve windows build instructions using Linux subsystem (laanwj)932d02a
contrib: Add README for pgp keys (MarcoFalke)2fae5b9
release-process: Mention GitHub release and archived release notes (MarcoFalke)bae178f
Remove old manpages from contrib/debian in favour of doc/man (fanquake)4105cb6
Trim down the XP notice and say more about what we support (gmaxwell)9851498
Developer docs about existing subtrees (gmaxwell)c2ea1e6
Make rpcauth help message clearer, add example in example .conf (instagibbs)bc9e3ab
contributing: Mention not to open several pulls (luke-jr)7b784cc
Mention Gitian building script in doc (Laudaa) (laanwj)03dd707
Add copyright/patent issues to possible NACK reasons (petertodd)23e03f8
Mention that PPA doesn’t support Debian (anduck)bfc7aad
Mention reporting security issues responsibly (paveljanik)08e0690
Update sendfrom RPC help to correct coin selection misconception (ryanofsky)289204f
Change bitcoin address in RPC help message (marijnfs)7a2d402
util: Update tinyformat (laanwj)5cac8b1
util: CopyrightHolders: Check for untranslated substitution (MarcoFalke)44691f3
contrib: Rework verifybinaries (MarcoFalke)e8ed6eb
contrib: python: Don’t use shell=True (MarcoFalke)fb24d7e
bitcoind: Daemonize using daemon(3) (laanwj)67728a3
Clarify listenonion
(unsystemizer)bae81b8
tools for analyzing, updating and adding copyright headers in source files (isle2983)8c6218a
libconsensus: Add input validation of flags (laanwj)46027e8
Avoid ugly exception in log on unknown inv type (laanwj)2108911
Allow bitcoin-tx to parse partial transactions (jnewbery)74ced54
Clarify CreateTransaction error messages (instagibbs)31bcc66
bitcoin-cli: Make error message less confusing (laanwj)72bf1b3
Update comments in ctaes (sipa)c4b7d4f
Do not evaluate hidden LogPrint arguments (sipa)593a00c
RFC: Improve style for if indentation (sipa)d5d4ad8
Add all standard TXO types to bitcoin-tx (jnewbery)23281a4
Release notes for estimation changes (morcos)f62bc10
Make peer=%d log prints consistent (TheBlueMatt)41cb05c
Add IPv6 support to qos.sh (jamesmacwhite)e9e7993
Docs: Update CONTRIBUTING.md (jnewbery)53ab12d
Remove unused clang format dev script (MarcoFalke)77bd8c4
Increase minimum debug.log size to 10MB after shrink (morcos)7b22e50
Lockedpool fixes (kazcw)7008e28
contrib: Delete spendfrom (MarcoFalke)f2a6e82
Use deprecated MAP_ANON
if MAP_ANONYMOUS
is not defined (paveljanik)1107653
Fix bloom filter init to isEmpty = true (robmcl4)613bda4
LevelDB 1.19 (sipa)5488514
Fix some benign races (TheBlueMatt)5fa7b07
base58: Improve DecodeBase58 performance (wjx)e81df49
Various serialization simplifcations and optimizations (sipa)a143b88
Split up AppInit2 into multiple phases, daemonize after datadir lock errors (laanwj)c79e52a
Fix some benign races in timestamp logging (TheBlueMatt)7f72568
Fix races for strMiscWarning and fLargeWork*Found
, make QT runawayException use GetWarnings (gmaxwell)7aa7004
Clean up mapArgs and mapMultiArgs Usage (TheBlueMatt)cfe41d7
RAII of libevent stuff using unique ptrs with deleters (kallewoof)fac0f30
Disentangle progress estimation from checkpoints and update it (sipa)6012967
Fix various things -fsanitize complains about (sipa)dd163f5
Lock debugging: Always enforce strict lock ordering (try or not) (TheBlueMatt)7c93952
Check verify-commits on pushes to master (TheBlueMatt)a351162
Access WorkQueue::running only within the cs lock (TheBlueMatt)8dee822
Handle unusual maxsigcachesize gracefully (jnewbery)e22c067
Fix Issue #9775 (Check returned value of fopen) (kirit93)69832aa
Terminate immediately when allocation fails (theuni)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.14.1 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.14.1/
This is a new minor version release, including various bugfixes and
performance improvements, as well as updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
Compatibility
Bitcoin Core is extensively tested on multiple operating systems using
the Linux kernel, macOS 10.8+, and Windows Vista and later.
Microsoft ended support for Windows XP on April 8th, 2014,
No attempt is made to prevent installing or running the software on Windows XP, you
can still do so at your own risk but be aware that there are known instabilities and issues.
Please do not report issues about Windows XP to the issue tracker.
Bitcoin Core should also work on most other Unix-like systems but is not
frequently tested on them.
Notable changes
The first positional argument of createrawtransaction
was renamed from
transactions
to inputs
.
The argument of disconnectnode
was renamed from node
to address
.
These interface changes break compatibility with 0.14.0, when the named
arguments functionality, introduced in 0.14.0, is used. Client software
using these calls with named arguments needs to be updated.
In previous versions, getblocktemplate required segwit support from downstream
clients/miners once the feature activated on the network. In this version, it
now supports non-segwit clients even after activation, by removing all segwit
transactions from the returned block template. This allows non-segwit miners to
continue functioning correctly even after segwit has activated.
Due to the limitations in previous versions, getblocktemplate also recommended
non-segwit clients to not signal for the segwit version-bit. Since this is no
longer an issue, getblocktemplate now always recommends signalling segwit for
all miners. This is safe because ability to enforce the rule is the only
required criteria for safe activation, not actually producing segwit-enabled
blocks.
Memory usage for the UTXO cache is being calculated more accurately, so that
the configured limit (-dbcache
) will be respected when memory usage peaks
during cache flushes. The memory accounting in prior releases is estimated to
only account for half the actual peak utilization.
The default -dbcache
has also been changed in this release to 450MiB. Users
who currently set -dbcache
to a high value (e.g. to keep the UTXO more fully
cached in memory) should consider increasing this setting in order to achieve
the same cache performance as prior releases. Users on low-memory systems
(such as systems with 1GB or less) should consider specifying a lower value for
this parameter.
Additional information relating to running on low-memory systems can be found
here:
reducing-bitcoind-memory-usage.md.
0.14.1 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
142fbb2
Rename first named arg of createrawtransaction (MarcoFalke)f15268d
Remove auth cookie on shutdown (practicalswift)2fea10a
Better error handling for submitblock (rawodb, gmaxwell)d947afc
Prioritisetransaction wasn’t always updating ancestor fee (sdaftuar)3c79602
Rename disconnectnode argument (jnewbery)0b5e162
Compensate for memory peak at flush time (sipa)fc3d7db
Optimize GetWitnessHash() for non-segwit transactions (sdaftuar)ab864d3
Clean up calculations of pcoinsTip memory usage (morcos)d2548a4
Fix shutdown hang with >= 8 -addnodes set (TheBlueMatt)30fa231
net: gracefully handle NodeId wrapping (theuni)e9611d1
depends: fix zlib build on osx (theuni)ddc2dd1
Ensure an item exists on the rpcconsole stack before adding (achow101)569596c
Don’t require segwit in getblocktemplate for segwit signalling or mining (sdaftuar)b5c3440
Prevent slowdown in CreateNewBlock on large mempools (sdaftuar)55f641c
Fix the mempool_packages.py
test (sdaftuar)4d8e660
Trivial: Fix typo in help getrawtransaction RPC (keystrike)e4c9a90
util: Work around (virtual) memory exhaustion on 32-bit w/ glibc (laanwj)ecc5232
bitcoin-tx input verification (awemany, jnewbery)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.14.2 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.14.2/
This is a new minor version release, including various bugfixes and
performance improvements, as well as updated translations.
Please report bugs using the issue tracker at github:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
Compatibility
Bitcoin Core is extensively tested on multiple operating systems using
the Linux kernel, macOS 10.8+, and Windows Vista and later.
Microsoft ended support for Windows XP on April 8th, 2014,
No attempt is made to prevent installing or running the software on Windows XP, you
can still do so at your own risk but be aware that there are known instabilities and issues.
Please do not report issues about Windows XP to the issue tracker.
Bitcoin Core should also work on most other Unix-like systems but is not
frequently tested on them.
Notable changes
Bundled miniupnpc was updated to 2.0.20170509. This fixes an integer signedness error
(present in MiniUPnPc v1.4.20101221 through v2.0) that allows remote attackers
(within the LAN) to cause a denial of service or possibly have unspecified
other impact.
This only affects users that have explicitly enabled UPnP through the GUI
setting or through the -upnp
option, as since the last UPnP vulnerability
(in Bitcoin Core 0.10.3) it has been disabled by default.
If you use this option, it is recommended to upgrade to this version as soon as
possible.
Known Bugs
Since 0.14.0 the approximate transaction fee shown in Bitcoin-Qt when using coin
control and smart fee estimation does not reflect any change in target from the
smart fee slider. It will only present an approximate fee calculated using the
default target. The fee calculated using the correct target is still applied to
the transaction and shown in the final send confirmation dialog.
0.14.2 Change log
Detailed release notes follow. This overview includes changes that affect
behavior, not code moves, refactors and string updates. For convenience in locating
the code changes and accompanying discussion, both the pull request and
git merge commit are mentioned.
321419b
Fix importwallet edge case rescan bug (ryanofsky)37a8fc5
Populate services in GetLocalAddress (morcos)9e3ad50
Only enforce expected services for half of outgoing connections (theuni)ffb0c4b
miniupnpc 2.0.20170509 (fanquake)ae479bc
Regenerate bitcoin-config.h as necessary (theuni)44a17f2
Minor fix in build documentation for FreeBSD 11 (shigeya)0aee4a1
Check interruptNet during dnsseed lookups (TheBlueMatt)1e936d7
Reduce a significant cs_main lock freeze (jonasschnelli)1847642
Unset change position when there is no change (instagibbs)Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.15.0.1 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.15.0.1/
and
https://bitcoincore.org/bin/bitcoin-core-0.15.0.1/
This is a minor bug fix for 0.15.0.
Please report bugs using the issue tracker at GitHub:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
How to Upgrade
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt
(on Mac)
or bitcoind
/bitcoin-qt
(on Linux).
The first time you run version 0.15.0 or higher, your chainstate database will
be converted to a new format, which will take anywhere from a few minutes to
half an hour, depending on the speed of your machine.
The file format of fee_estimates.dat
changed in version 0.15.0. Hence, a
downgrade from version 0.15.0 or upgrade to version 0.15.0 will cause all fee
estimates to be discarded.
Note that the block database format also changed in version 0.8.0 and there is no
automatic upgrade code from before version 0.8 to version 0.15.0. Upgrading
directly from 0.7.x and earlier without redownloading the blockchain is not supported.
However, as usual, old wallet versions are still supported.
The chainstate database for this release is not compatible with previous
releases, so if you run 0.15 and then decide to switch back to any
older version, you will need to run the old release with the -reindex-chainstate
option to rebuild the chainstate data structures in the old format.
If your node has pruning enabled, this will entail re-downloading and
processing the entire blockchain.
Compatibility
Bitcoin Core is extensively tested on multiple operating systems using
the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported.
Bitcoin Core should also work on most other Unix-like systems but is not
frequently tested on them.
Notable changes
After upgrade to 0.15.0, some clients would crash at startup because a custom
fee setting was configured that no longer exists in the GUI. This is a minimal
patch to avoid this issue from occuring.
46c8d23
Fix possible crash with invalid nCustomFeeRadio in QSettings (achow101, TheBlueMatt)Also the manpages were updated, as this was forgotten for 0.15.0.
Credits
Thanks to everyone who directly contributed to this release:
As well as everyone that helped translating on Transifex.
Bitcoin Core version 0.15.0 is now available from:
https://bitcoin.org/bin/bitcoin-core-0.15.0/
This is a new major version release, including new features, various bugfixes
and performance improvements, as well as updated translations.
Please report bugs using the issue tracker at GitHub:
https://github.com/bitcoin/bitcoin/issues
To receive security and update notifications, please subscribe to:
https://bitcoincore.org/en/list/announcements/join/
How to Upgrade
If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt
(on Mac)
or bitcoind
/bitcoin-qt
(on Linux).
The first time you run version 0.15.0, your chainstate database will be converted to a
new format, which will take anywhere from a few minutes to half an hour,
depending on the speed of your machine.
The file format of fee_estimates.dat
changed in version 0.15.0. Hence, a
downgrade from version 0.15.0 or upgrade to version 0.15.0 will cause all fee
estimates to be discarded.
Note that the block database format also changed in version 0.8.0 and there is no
automatic upgrade code from before version 0.8 to version 0.15.0. Upgrading
directly from 0.7.x and earlier without redownloading the blockchain is not supported.
However, as usual, old wallet versions are still supported.
The chainstate database for this release is not compatible with previous
releases, so if you run 0.15 and then decide to switch back to any
older version, you will need to run the old release with the -reindex-chainstate
option to rebuild the chainstate data structures in the old format.
If your node has pruning enabled, this will entail re-downloading and
processing the entire blockchain.
Compatibility
Bitcoin Core is extensively tested on multiple operating systems using
the Linux kernel, macOS 10.8+, and Windows Vista and later. Windows XP is not supported.
Bitcoin Core should also work on most other Unix-like systems but is not
frequently tested on them.
Notes for 0.15.0
Version 0.15.0 supports adding a segregated witness address via the addwitnessaddress
RPC, but
please note that this is a testing/expert RPC, which does not guarantee recovery from backup. Only use
this RPC if you know what you are doing. More complete wallet support for segregated witness is coming
in a next version.
As in previous versions, when using an encrypted HD wallet, the keypool cannot be topped up without unlocking
the wallet. This means that currently, in order to recover from a backup of an encrypted HD wallet, the user
must unlock the wallet with a really long timeout and manually trigger a rescan, otherwise they risk missing
some keys when auto-topup cannot run. Unfortunately there is no rescan
RPC in this version, that will be
included in a future version, so for now a rescan can be triggered using one of the import*
commands, using
a dummy address generated by another (trusted) wallet.
Notable changes
Version 0.15 contains a number of significant performance improvements, which make
Initial Block Download, startup, transaction and block validation much faster:
The chainstate database (which is used for tracking UTXOs) has been changed
from a per-transaction model to a per-output model (See PR 10195). Advantages of this model
are that it:
As a result, validating the blockchain during Initial Block Download (IBD) and reindex
is ~30-40% faster, uses 10-20% less memory, and flushes to disk far less frequently.
The only downside is that the on-disk database is 15% larger. During the conversion from the previous format
a few extra gigabytes may be used.
-dbcache
) is now actually used as cache. This reduces the flushing --enable-experimental-asm
when building.Fee estimation has been significantly improved in version 0.15, with more accurate fee estimates used by the wallet and a wider range of options for advanced users of the estimatesmartfee
and estimaterawfee
RPCs (See PR 10199).
estimatefee
RPC is now deprecated in favor of using only estimatesmartfee
(which is the implementation used by the GUI)estimatesmartfee
RPC interface has been changed (See PR 10707): nblocks
argument has been renamed to conf_target
(to be consistent with other RPC methods).estimate_mode
argument has been added. This argument takes one of the following strings: CONSERVATIVE
, ECONOMICAL
or UNSET
(which defaults to CONSERVATIVE
).errors
member, which returns errors encountered during processing.estimaterawfee
RPC is added to provide raw fee data. External clients can query and use this data in their own fee estimation logic.Bitcoin Core now supports loading multiple, separate wallets (See PR 8694, PR 10849). The wallets are completely separated, with individual balances, keys and received transactions.
Multi-wallet is enabled by using more than one -wallet
argument when starting Bitcoin, either on the command line or in the Bitcoin config file.
In Bitcoin-Qt, only the first wallet will be displayed and accessible for creating and signing transactions. GUI selectable multiple wallets will be supported in a future version. However, even in 0.15 other loaded wallets will remain synchronized to the node’s current tip in the background. This can be useful if running a pruned node, since loading a wallet where the most recent sync is beyond the pruned height results in having to download and revalidate the whole blockchain. Continuing to synchronize all wallets in the background avoids this problem.
Bitcoin Core 0.15.0 contains the following changes to the RPC interface and bitcoin-cli
for multi-wallet:
bitcoin-cli
. All RPC calls and bitcoin-cli
commands continue to work as before.:/
endpoint, and bitcoin-cli
commands should be run as before. A node-level RPC method is any method which does not require access to the wallet.:/wallet//
endpoint, for example 127.0.0.1:8332/wallet/wallet1.dat/
. bitcoin-cli
commands should be run with a -rpcwallet
option, for example bitcoin-cli -rpcwallet=wallet1.dat getbalance
.listwallets
RPC method is added to display which wallets are currently loaded. The names returned by this method are the same as those used in the HTTP endpoint and for the rpcwallet
argument.Note that while multi-wallet is now fully supported, the RPC multi-wallet interface should be considered unstable for version 0.15.0, and there may backwards-incompatible changes in future versions.
Bitcoin Core has supported creating opt-in replace-by-fee (RBF) transactions
since version 0.12.0, and since version 0.14.0 has included a bumpfee
RPC method to
replace unconfirmed opt-in RBF transactions with a new transaction that pays
a higher fee.
In version 0.15, creating an opt-in RBF transaction and replacing the unconfirmed
transaction with a higher-fee transaction are both supported in the GUI (See PR 9592).
In previous versions of Bitcoin Core, a portion of each block could be reserved for transactions based on the age and value of UTXOs they spent. This concept (Coin Age Priority) is a policy choice by miners, and there are no consensus rules around the inclusion of Coin Age Priority transactions in blocks. In practice, only a few miners continue to use Coin Age Priority for transaction selection in blocks. Bitcoin Core 0.15 removes all remaining support for Coin Age Priority (See PR 9602). This has the following implications:
-limitfreerelay
and -relaypriority
options which controlled relay of free transactions have therefore been removed.-sendfreetransactions
option has been removed, since almost all miners do not include transactions which do not attach a transaction fee.-blockprioritysize
option has been removed.estimatepriority
and estimatesmartpriority
RPCs have been removed.getmempoolancestors
, getmempooldescendants
, getmempoolentry
and getrawmempool
RPCs no longer return startingpriority
and currentpriority
.prioritisetransaction
RPC no longer takes a priority_delta
argument, which is replaced by a dummy
argument for backwards compatibility with clients using positional arguments. The RPC is still used to change the apparent fee-rate of the transaction by using the fee_delta
argument.-minrelaytxfee
can now be set to 0. If minrelaytxfee
is set, then fees smaller than minrelaytxfee
(per kB) are rejected from relaying, mining and transaction creation. This defaults to 1000 satoshi/kB.-printpriority
option has been updated to only output the fee rate and hash of transactions included in a block by the mining code.Version 0.14 introduced mempool persistence across restarts (the mempool is saved to a mempool.dat
file in the data directory prior to shutdown and restores the mempool when the node is restarted). Version 0.15 allows this feature to be switched on or off using the -persistmempool
command-line option (See PR 9966). By default, the option is set to true, and the mempool is saved on shutdown and reloaded on startup. If set to false, the mempool.dat
file will not be loaded on startup or saved on shutdown.
Version 0.15 introduces several new RPC methods:
abortrescan
stops current wallet rescan, e.g. when triggered by an importprivkey
call (See PR 10208).combinerawtransaction
accepts a JSON array of raw transactions and combines them into a single raw transaction (See PR 10571).estimaterawfee
returns raw fee data so that customized logic can be implemented to analyze the data and calculate estimates. See Fee Estimation Improvements for full details on changes to the fee estimation logic and interface.getchaintxstats
returns statistics about the total number and rate of transactions listwallets
lists wallets which are currently loaded. See the Multi-wallet section uptime
returns the total runtime of the bitcoind
server since its last start (See PR 10400).When using Bitcoin Core in multi-wallet mode, RPC requests for wallet methods must specify
the wallet that they’re intended for. See Multi-wallet support for full details.
The new database model no longer stores information about transaction
versions of unspent outputs (See Performance improvements). This means that:
gettxout
RPC no longer has a version
field in the response.gettxoutsetinfo
RPC reports hash_serialized_2
instead of hash_serialized
, getutxos
REST path no longer reports the txvers
field in JSON format, The estimatefee
RPC is deprecated. Clients should switch to using the estimatesmartfee
RPC, which returns better fee estimates. See Fee Estimation Improvements for full details on changes to the fee estimation logic and interface.
The gettxoutsetinfo
response now contains disk_size
and bogosize
instead of
bytes_serialized
. The first is a more accurate estimate of actual disk usage, but
is not deterministic. The second is unrelated to disk usage, but is a
database-independent metric of UTXO set size: it counts every UTXO entry as 50 + the
length of its scriptPubKey (See PR 10426).
signrawtransaction
can no longer be used to combine multiple transactions into a single transaction. Instead, use the new combinerawtransaction
RPC (See PR 10571).
fundrawtransaction
no longer accepts a reserveChangeKey
option. This option used to allow RPC users to fund a raw transaction using an key from the keypool for the change address without removing it from the available keys in the keypool. The key could then be re-used for a getnewaddress
call, which could potentially result in confusing or dangerous behaviour (See PR 10784).
estimatepriority
and estimatesmartpriority
have been removed. See Removal of Coin Age Priority.
The listunspent
RPC now takes a query_options
argument (see PR 8952), which is a JSON object
containing one or more of the following members:
minimumAmount
- a number specifying the minimum value of each UTXOmaximumAmount
- a number specifying the maximum value of each UTXOmaximumCount
- a number specifying the minimum number of UTXOsminimumSumAmount
- a number specifying the minimum sum value of all UTXOsThe getmempoolancestors
, getmempooldescendants
, getmempoolentry
and getrawmempool
RPCs no longer return startingpriority
and currentpriority
. See Removal of Coin Age Priority.
The dumpwallet
RPC now returns the full absolute path to the dumped wallet. It
used to return no value, even if successful (See PR 9740).
In the getpeerinfo
RPC, the return object for each peer now returns an addrbind
member, which contains the ip address and port of the connection to the peer. This is in addition to the addrlocal
member which contains the ip address and port of the local node as reported by the peer (See PR 10478).
The disconnectnode
RPC can now disconnect a node specified by node ID (as well as by IP address/port). To disconnect a node based on node ID, call the RPC with the new nodeid
argument (See PR 10143).
The second argument in prioritisetransaction
has been renamed from priority_delta
to dummy
since Bitcoin Core no longer has a concept of coin age priority. The dummy
argument has no functional effect, but is retained for positional argument compatibility. See Removal of Coin Age Priority.
The resendwallettransactions
RPC throws an error if the -walletbroadcast
option is set to false (See PR 10995).
The second argument in the submitblock
RPC argument has been renamed from parameters
to dummy
. This argument never had any effect, and the renaming is simply to communicate this fact to the user (See PR 10191)
(Clients should, however, use positional arguments for submitblock
in order to be compatible with BIP 22.)
The verbose
argument of getblock
has been renamed to verbosity
and now takes an integer from 0 to 2. Verbose level 0 is equivalent to verbose=false
. Verbose level 1 is equivalent to verbose=true
. Verbose level 2 will give the full transaction details of each transaction in the output as given by getrawtransaction
. The old behavior of using the verbose
named argument and a boolean value is still maintained for compatibility.
Error codes have been updated to be more accurate for the following error cases (See PR 9853):
getblock
now returns RPC_MISC_ERROR if the block can’t be found on disk (for pruneblockchain
now returns RPC_MISC_ERROR if the blocks cannot be pruned pruneblockchain
now returns RPC_INVALID_PARAMETER if the blocks cannot be pruned pruneblockchain
now returns RPC_MISC_ERROR if the blocks cannot be pruned setban
now returns RPC_CLIENT_INVALID_IP_OR_SUBNET if the supplied IP address setban
now returns RPC_CLIENT_INVALID_IP_OR_SUBNET if the user tries to unban removeprunedfunds
now returns RPC_WALLET_ERROR if bitcoind
is unable to remove removeprunedfunds
now returns RPC_INVALID_PARAMETER if the transaction does not fundrawtransaction
now returns RPC_INVALID_ADDRESS_OR_KEY if an invalid change fundrawtransaction
now returns RPC_WALLET_ERROR if bitcoind
is unable to create bumpfee
now returns RPC_INVALID_PARAMETER if the provided transaction has bumpfee
now returns RPC_INVALID_PARAMETER if the provided transaction has bumpfee
now returns RPC_WALLET_ERROR if the provided transaction has bumpfee
now returns RPC_WALLET_ERROR if the provided transaction is not bumpfee
now returns RPC_WALLET_ERROR if the provided transaction has already bumpfee
now returns RPC_WALLET_ERROR if the provided transaction contains bumpfee
now returns RPC_WALLET_ERROR if the provided transaction has multiple change bumpfee
now returns RPC_WALLET_ERROR if the provided transaction has no change bumpfee
now returns RPC_WALLET_ERROR if the fee is too high. Previously returned bumpfee
now returns RPC_WALLET_ERROR if the fee is too low. Previously returned bumpfee
now returns RPC_WALLET_ERROR if the change output is too small to bump the 0.15.0 Change log
61a640e
ZMQ example using python3 and asyncio (mcelrath)0496e15
remove ‘label’ filter for rpc command help (instagibbs)02bd6e9
Fix error codes from various RPCs (jnewbery)598ef9c
Fix RPC failure testing (continuation of #9707) (jnewbery)d34995a
Add mallocinfo mode to getmemoryinfo
RPC (laanwj)3568b30
[Qt][RPC] Autocomplete commands for ‘help’ command in debug console (achow101)e6156a0
[zmq] Call va_end() on va_start()ed args (kallewoof)7438cea
Trivial: move rpcserialversion into RPC option group (jlopp)350b224
[rpc] Add logging rpc (jnewbery)393160c
[wallet] Rescan abortability (kallewoof)a987def
[net] Allow disconnectnode RPC to be called with node id (jnewbery)0e8499c
doc: Add RPC interface guidelines (laanwj)d4732f3
Add getchaintxstats RPC (sipa)f4b15e2
[doc] Add hint about getmempoolentry to getrawmempool help (kallewoof)96c850c
[RPC] Transaction details in getblock (achow101)9390845
Add query options to listunspent RPC call (pedrobranco)08ac35a
Fix docs (there’s no rpc command setpaytxfee) (RHavar)e317c0d
Add witness data output to TxInError messages (instagibbs)4677151
RPC: getblockchaininfo returns BIP signaling statistics (pinheadmz)ef2d062
Fix bumpfee rpc “errors” return value (ryanofsky)39039b1
[RPC] getmempoolinfo mempoolminfee is a BTC/KB feerate (instagibbs)296928e
rpc: Add listen address to incoming connections in getpeerinfo
(laanwj)08d0390
Fix importmulti failure to return rescan errors (ryanofsky)9fec4da
Add friendly output to dumpwallet (aideca)16f6c98
Replace bytes_serialized with bogosize (sipa)980deaf
RPC/Mining: Restore API compatibility for prioritisetransaction (luke-jr)46311e7
Opt-into-RBF for RPC & bitcoin-tx (luke-jr)9c248e3
Decodehextx scripts sanity check (achow101)fa1f106
Note that the prioritizetransaction dummy value is deprecated, and has no meaning (TheBlueMatt)c94b89e
gettxoutproof() should return consistent result (jnewbery)00350bd
[trivial] Rename unused RPC arguments ‘dummy’ (jnewbery)b62b4c8
fixed listunspent rpc convert parameter (tnakagawa)bef02fb
Improve wallet rescan API (ryanofsky)1680ee0
[RPC] Add an uptime command that displays the amount of time (in seconds) bitcoind has been running (rvelhote)d81bec7
rpc: Move the generate
RPC call to rpcwallet (laanwj)30bc0f6
REST/RPC example update (Mirobit)9edda0c
[rpc] fix verbose argument for getblock in bitcoin-cli (jnewbery)104f5f2
More economical fee estimates for RBF and RPC options to control (morcos)b27b004
Change API to estimaterawfee (morcos)afd2fca
getbalance example covers at least 6 confirms (instagibbs)75b5643
Better API for estimatesmartfee RPC (morcos)9e8d6a3
Do not allow users to get keys from keypool without reserving them (TheBlueMatt)d445a2c
[RPC] Add a deprecation warning to getinfo’s output (achow101)adf170d
[RPC]Move transaction combining from signrawtransaction to new RPC (achow101)041dad9
[RPC] Various rpc argument fixes (instagibbs)6ef3c7e
[rpc] listsinceblock should include lost transactions when parameter is a reorg’d block (kallewoof)8537187
Prevent user from specifying conflicting parameters to fundrawtx (TheBlueMatt)0b11a07
Fix misleading “Method not found” multiwallet errors (ryanofsky)f66c596
[RPC] Fix addwitnessaddress by replacing ismine with producesignature (achow101)627c3c0
Fix amounts formatting in decoderawtransaction
(laanwj)4268426
[wallet] return correct error code from resendwallettransaction (jnewbery)96a63a3
[RPC] trivial: gettxout no longer shows version of tx (FelixWeis)6c2b008
Fix combinerawtransaction RPC help result section (jonasnick)07164bb
[RPC] Only return hex field once in getrawtransaction (achow101)5af6572
Be consistent in calling transactions “replaceable” for Opt-In RBF (TheBlueMatt)a8c5751
Removed redundant parameter from mempool.PrioritiseTransaction (gubatron)1efc99c
Remove harmless read of unusued priority estimates (morcos)b7547fa
Remove block file location upgrade code (benma)30ff3a2
Remove coin age priority and free transactions - implementation (morcos)47510ad
Remove min reasonable fee (morcos)c73af54
Switch CCoinsMap from boost to std unordered_map (sipa)2a183de
Control mempool persistence using a command line parameter (jnewbery)318ea50
Better fee estimates (morcos)bee3529
Bugfix: PrioritiseTransaction updates the mempool tx counter (sdaftuar)1088b02
Switch chainstate db and cache to per-txout model (sipa)c2ab38b
Always log debug information for fee calculation in CreateTransaction (morcos)efbcf2b
Use REJECT_DUPLICATE for already known and conflicted txn (sipa)b3eb0d6
Few Minor per-utxo assert-semantics re-adds and tweak (TheBlueMatt)8c841a3
doc: Remove outdated minrelaytxfee comment (MarcoFalke)234ffc6
Change semantics of HaveCoinInCache to match HaveCoin (morcos)7878353
Simplify return values of GetCoin/HaveCoin(InCache) (sipa)a381f6a
Remove no longer used mempool.exists(outpoint) (morcos)d4e551a
Use non-atomic flushing with block replay (sipa)30c2130
Clarify CCoinsViewMemPool documentation (TheBlueMatt)90a002e
Address nits from per-utxo change (morcos)6859ad2
Improve wallet fee logic and fix GUI bugs (morcos)754aa02
Force on-the-fly compaction during pertxout upgrade (sipa)d896d5c
Add undocumented -forcecompactdb to force LevelDB compactions (sipa)e4bbd3d
Improved efficiency in COutPoint constructors (mm-s)8d6d43e
Add -stopatheight for benchmarking (sipa)7639d38
netbase: Do not print an error on connection timeouts through proxy (laanwj)5b583ef
Add seed.btc.petertodd.org to mainnet DNS seeds (petertodd)22f609f
Trivial: Debug log ambiguity fix for peer addrs (keystrike)90cb2a2
Enable host lookups for -proxy and -onion parameters (jmcorgan)7b585cf
Clarify assumptions made about when BlockCheck is called (TheBlueMatt)e19586a
[p2p] Send the correct error code in reject messages (jnewbery)eab00d9
Use cached [compact] blocks to respond to getdata messages (TheBlueMatt)a077a90
Check interruptNet during dnsseed lookups (TheBlueMatt)faf2dea
[net] listbanned RPC and QT should show correct banned subnets (jnewbery)314ebdf
[qa] Fixes segwit block relay test after inv-direct-fetch was disabled (sdaftuar)3f57c55
removed unused code in INV message (Greg-Griffith)ae78609
[net] Added SetSocketNoDelay() utility function (tjps)28c6e8d
Net: Improvements to Tor control port parser (str4d)5c63d66
Broadcast address every day, not 9 hours (sipa)400fdd0
Denote functions CNode::GetRecvVersion() and CNode::GetRefCount() as const (pavlosantoniou)67700b3
[P2P] Timeout for headers sync (sdaftuar)8d9f45e
Return early in IsBanned (gmaxwell)de8db47
Net: Fix resource leak in ReadBinaryFile(…) (practicalswift)b33ca14
[net] Avoid possibility of NULL pointer dereference in MarkBlockAsInFlight(…) (practicalswift)2772dc9
net: avoid extra dns query per seed (theuni)9dd6a2b
Avoid unnecessary work in SetNetworkActive (promag)df3a6f4
p2p: Hardcoded seeds update pre-0.15 branch (laanwj)02f4c4a
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest&) (practicalswift)c8b62c7
Disconnect network service bits 6 and 8 until Aug 1, 2018 (TheBlueMatt)0e5cff6
Make sure to clean up mapBlockSource if we’ve already seen the block (theuni)67023e9
CValidationInterface Cleanups (TheBlueMatt)2584925
Remove CValidationInterface::UpdatedTransaction (TheBlueMatt)a6548a4
pass Consensus::Params& to functions in validation.cpp and make them static (mariodian)431a548
Simplify DisconnectBlock arguments/return value (sipa)f94b7d5
Introduce static DoWarning (simplify UpdateTip) (jtimon)2e7d8f8
Fix stopatheight (achow101)2935b46
Cache full script execution results in addition to signatures (TheBlueMatt)21ed30a
Give CValidationInterface Support for calling notifications on the CScheduler Thread (TheBlueMatt)66270a4
Make check to distinguish between orphan txs and old txs more efficient (morcos)7c2400c
nCheckDepth chain height fix (romanornr)16240f4
Add SSE4 optimized SHA256 (sipa)04d395e
Avoid using sizes on non-fixed-width types to derive protocol constants (gmaxwell)2a50b11
Update defaultAssumeValid according to release-process.md (gmaxwell)2361208
Update chain transaction statistics (sipa)6bdf4b3
Avoid masking of difficulty adjustment errors by checkpoints (sipa)cb598cf
Allow non-power-of-2 signature cache sizes (sipa)acd9957
Improve DisconnectTip performance (sdaftuar)f90603a
Remove confusing MAX_BLOCK_BASE_SIZE (gmaxwell)bd92424
Fix some chainstate-init-order bugs (TheBlueMatt)b7296bc
Don’t return stale data from CCoinsViewCache::Cursor() (ryanofsky)2507fd5
Fix upgrade cancel warnings (TheBlueMatt)cbdb473
Abstract out the command line options for block assembly (sipa)5f0556d
Remove fallbacks for boost_filesystem < v3 (laanwj)50a2265
gitian: bump descriptors for master (theuni)7ca2f54
Minor update to qrencode package builder (mitchellcash)2cc0df1
release: Windows signing script (theuni)8b789d8
build: Probe MSG_DONTWAIT in the same way as MSG_NOSIGNAL (laanwj)32d1b34
build: Fix typo s/HAVE_DONTWAIT/HAVE_MSG_DONTWAIT (laanwj)90dd9e6
Fix build errors if spaces in path or parent directory (pinheadmz)81da4c7
build: Disable Wshadow warning (laanwj)64962ae
Ignore Doxyfile generated from Doxyfile.in template (paveljanik)0416ea9
Make Boost use std::atomic internally (sipa)27faa6c
build: regenerate bitcoin-config.h as necessary (theuni)8979f45
[scripts] Minor improvements to macdeployqtplus
script (chrisgavin)a26280b
0.15.0 Depends Updates (fanquake)79aeff6
Update contrib/debian to latest Ubuntu PPA upload (TheBlueMatt)d25449f
Bugfix: Only use git for build info if the repository is actually the right one (luke-jr)e654d61
build: silence gcc7’s implicit fallthrough warning (theuni)ad1a13e
Avoid printing generic and duplicated “checking for QT” during ./configure (drizzt)8465b68
[depends] expat 2.2.1 (fanquake)db825d2
build: verify that the assembler can handle crc32 functions (theuni)b4d03be
Building Environment: Set ARFLAGS to cr (ReneNyffenegger)91edda8
Explicitly search for bdb5.3 (pstratem)81560b0
random: only use getentropy on openbsd (theuni)1caafa6
Run Qt wallet tests on travis (ryanofsky)e222618
depends: fix fontconfig with newer glibc (theuni)88b1e4b
build: fix missing sse42 in depends builds (theuni)129b03f
gitian: quick hack to fix version string in releases (theuni)919aaf6
Fix compile errors with Qt 5.3.2 and Boost 1.55.0 (ryanofsky)7032021
Fix build warning from #error text (jnewbery)318392c
Check if sys/random.h is required for getentropy (jameshilliard)1a9fd5c
Qt/Intro: Add explanation of IBD process (luke-jr)b00ba62
qt: clean up initialize/shutdown signals (benma)ce01e62
[Qt] Show more significant warning if we fall back to the default fee (jonasschnelli)b9f930b
Add basic Qt wallet test (ryanofsky)a387d3a
Change ‘Clear’ button string to ‘Reset’ (da2x)9c7b7cf
[Qt] Add checkbox in the GUI to opt-in to RBF when creating a transaction (ryanofsky)2b477e6
Make qt wallet test compatible with qt4 (ryanofsky)1fa4ae6
Add a button to open the config file in a text editor (ericshawlinux)51833a1
Fix for issues with startup and multiple monitors on windows (AllanDoensen)de01da7
Changed “Send” button default status from true to false (KibbledJiveElkZoo)e96486c
Stop treating coinbase outputs differently in GUI: show them at 1conf (TheBlueMatt)987a6c0
[Qt] Reduce a significant cs_main lock freeze (jonasschnelli)f6f3b58
[qt] Don’t call method on null WalletModel object (ryanofsky)a3e756b
[Qt] Don’t add arguments of sensitive command to console window (jonasschnelli)95546c8
[GUI] Add OSX keystroke to RPCConsole info (spencerlievens)962cd3f
[Qt] simple fee bumper with user verification (jonasschnelli)e477516
[wallet] remove minimum total fee option (instagibbs)4314544
Add Qt tests for wallet spends & bumpfee (ryanofsky)c1c9a95
Fix broken q4 test build (ryanofsky)64beb13
Overhaul Qt fee bumper (jonasschnelli)7c72fb9
Pass in smart fee slider value to coin control dialog (morcos)4c72cc3
[qt] Avoid potential null pointer dereference in TransactionView::exportClicked() (practicalswift)8fdd23a
[Qt] replace fee slider with a Dropdown, extend conf. targets (jonasschnelli)412b466
[Qt] Use wallet 0 in rpc console if running with multiple wallets (jonasschnelli)a9dd111
qt: Increase BLOCK_CHAIN_SIZE constants (laanwj)e292140
Slightly overhaul NSI pixmaps (jonasschnelli)0c3542e
Allow to cancel the txdb upgrade via splashscreen keypress ‘q’ (jonasschnelli)f7ec7cf
Add test for CWalletTx::GetImmatureCredit() returning stale values (ryanofsky)56ab672
[wallet] Remove redundant initialization (practicalswift)fa625b0
Document CWalletTx::mapValue entries and remove erase of nonexistent “version” entry (ryanofsky)72fb515
Disallow copy constructor CReserveKeys (instagibbs)3178b2c
Factor out CWallet::nTimeSmart computation into a method (ryanofsky)afcd7c0
Add safe flag to listunspent result (NicolasDorier)c49355c
Initialize nRelockTime (pstratem)3d857f3
Save watch only key timestamps when reimporting keys (ryanofsky)f34cdcb
Use internal HD chain for change outputs (hd split) (jonasschnelli)e183ea2
Wallet: reduce excess logic InMempool() (kewde)c9ff4f8
Remove SYNC_TRANSACTION_NOT_IN_BLOCK magic number (jnewbery)64c45aa
wallet: Use boost to more portably ensure -wallet specifies only a filename (luke-jr)c91ca0a
Improve ScanForWalletTransactions return value (ryanofsky)fa1ac28
Wallet database handling abstractions/simplifications (laanwj)c29a0d4
[wallet] [moveonly] Check non-null pindex before potentially referencing (kallewoof)a550f6e
Cleanup: reduce to one GetMinimumFee call signature (morcos)e2b99b1
[Wallet] unset change position when there is no change (instagibbs)d3dce0e
Avoid reading the old hd master key during wallet encryption (TheBlueMatt)18c9deb
rpc/wallet: Workaround older UniValue which returns a std::string temporary for get_str (luke-jr)94e5227
[wallet] Securely erase potentially sensitive keys/values (tjps)ea1fd43
[test] Add test for getmemoryinfo (jimmysong)ce8176d
[qt] Move some WalletModel functions into CWallet (ryanofsky)7cc2c67
Fix bumpfee test after #10449 (ryanofsky)098b01d
Avoid CWalletTx copies in GetAddressBalances and GetAddressGroupings (ryanofsky)0747d33
Simplify feebumper minimum fee code slightly (ryanofsky)2805d60
[wallet] Remove unused variables (practicalswift)177433a
Basic multiwallet support (luke-jr)7a74f88
Supress struct/class mismatch warnings introduced in #10284 (paveljanik)209eef6
Don’t create change at dust limit (morcos)ed88e31
Use method name via func macro (darksh1ne)e8b9523
Add change output if necessary to reduce excess fee (morcos)1c011ff
Properly forbid -salvagewallet and -zapwallettxes for multi wallet (morcos)5cfdda2
Track keypool entries as internal vs external in memory (TheBlueMatt)bf0a08b
[wallet] fix zapwallettxes interaction with persistent mempool (jnewbery)0b01935
Batch flushing operations to the walletdb during top up and increase keypool size (gmaxwell)7b6e8bc
No longer ever reuse keypool indexes (TheBlueMatt)bde4f93
Multiwallet: simplest endpoint support (jonasschnelli)9022aa3
Redefine Dust and add a discard_rate (morcos)bf3b742
Rename -usewallet to -rpcwallet (morcos)420238d
[wallet] [tests] Add listwallets RPC, include wallet name in getwalletinfo
and add multiwallet test (jnewbery)70888a3
Reject invalid wallets (promag)af56397
Clarify help message for -discardfee (morcos)2e857bb
Eliminate fee overpaying edge case when subtracting fee from recipients (morcos)fa64636
Fix resendwallettransactions assert failure if -walletbroadcast=0 (TheBlueMatt)653a46d
Basic keypool topup (jnewbery)9fe1f6b
Add length check for CExtKey deserialization (jonasschnelli, guidovranken)4ef8374
[wallet] Keypool topup cleanups (jnewbery)e51bb71
Fix rounding bug in calculation of minimum change (morcos)779f2f9
Use CScheduler for wallet flushing, remove ThreadFlushWalletDB (TheBlueMatt)4e3efd4
ApproximateBestSubset should take inputs by reference, not value (RHavar)8efd1c8
Remove unused module from rpc-tests (34ro)7ff4a53
Improve rpc-tests.py (jnewbery)7146d96
Add –exclude option to rpc-tests.py (jnewbery)d6064a8
Fix docstrings in qa tests (jnewbery)a13a417
qa: Set correct path for binaries in rpc tests (MarcoFalke)6206252
Extra test vector for BIP32 (sipa)88c2ae3
[Trivial] Adding label for amount inside of tx_valid/tx_invalid.json (Christewart)36afd4d
travis: Verify commits only for one target (MarcoFalke)58861ad
test: Fail if InitBlockIndex fails (laanwj)67c5cc1
Avoid -Wshadow warnings in wallet_tests (ryanofsky)48c3429
[qa] assert_start_raises_init_error (NicolasDorier)9d5fcbf
Fix BIP68 activation test (jnewbery)d32581c
bench: Assert that division by zero is unreachable (practicalswift)c78adbf
Fix segwit getblocktemplate test (jnewbery)d5ce14e
tests: Delete unused function _rpchost_to_args (laanwj)19be26a
[test] Avoid reading a potentially uninitialized variable in tx_invalid-test (transaction_tests.cpp) (practicalswift)ac23a7c
Improve logging in bctest.py if there is a formatting mismatch (jnewbery)8910b47
[qa] Add logging to test_framework.py (jnewbery)21833f9
Fix extended rpc tests broken by #9768 (jnewbery)857d1e1
QA: getblocktemplate_longpoll.py should always use >0 fee tx (sdaftuar)3cc13ea
Improve readability of segwit.py, smartfees.py (sdaftuar)2c781fb
CCheckQueue Unit Tests (JeremyRubin)9225de2
[trivial] Use log.info() instead of print() in remaining functional test cases (jnewbery)3192e52
Reorganise qa directory (jnewbery)02d64bd
combine_logs.py - aggregates log files from multiple bitcoinds during functional tests (jnewbery)dfef6b6
[tests] Remove unused variables and imports (practicalswift)a230b05
Make bumpfee tests less fragile (ryanofsky)ca20923
[test] Allow functional test cases to be skipped (jnewbery)a0b1e57
[test] Run extended tests once daily in Travis (jnewbery)1118493
[QA] Fix typo in fundrawtransaction test (NicolasDorier)c044f03
[QA] Renaming rawTx into rawtx (NicolasDorier)b1a4f27
Actually run assumevalid.py (jnewbery)c412fd8
Suppress noisy output from qa tests in Travis (jnewbery)79af9fb
Check that all test scripts in test/functional are being run (jnewbery)5b029aa
[qa] combine_logs: Use ordered list for logfiles (MarcoFalke)f2734c2
Remove unused variable. Remove accidental trailing semicolons in Python code (practicalswift)8ac8041
Remove SingleNodeConnCB (jnewbery)edc62c9
[tests] sync_with_ping should assert that ping hasn’t timed out (jnewbery)427d2fd
Speed Up CuckooCache tests (JeremyRubin)12af74b
Remove sources of unreliablility in extended functional tests (jnewbery)ebfd653
[qa] Add setnetworkactive smoke test (MarcoFalke)080d7c7
[trivial] remove unused line in Travis config (jnewbery)df1ca9e
[tests] color test results and sort alphabetically (jnewbery)88799ea
[test] Suppress test logging spam (jnewbery)ed09dd3
Run bitcoin_test-qt under minimal QPA platform (ryanofsky)a27dbc5
[bench] Avoid function call arguments which are pointers to uninitialized values (practicalswift)b44adf9
tests: Fix test_runner return value in case of skipped test (laanwj)d86bb07
[tests] Functional test warnings (jnewbery)9111df9
Tests: Order Python Tests Differently (jimmysong)f3db4c6
Tests: Add test for getdifficulty (jimmysong)2723bcd
[test] Add test for getaddednodeinfo (jimmysong)c530c15
[tests] remove maxblocksinflight.py (functionality covered by other test) (jnewbery)1b25b6d
Move zmq test skipping logic into individual test case (jnewbery)54e2d87
[Tests] Prevent warning: variable ‘x’ is uninitialized (paveljanik)e0a7e19
[test] Add aborttrescan tests (kallewoof)8254a8a
[test] Add Unit Test for GetListenPort (jimmysong)47535d7
[test] Unit test amount.h/amount.cpp (jimmysong)80c3a73
[test] Add test for gettxout to wallet.py (jimmysong)492d22f
[test] Add tests for getconnectioncount, getnettotals and ping (jimmysong)8f3e384
[tests] Remove func test code duplication (jnewbery)dc8fc0c
[tests] Remove is_network_split from functional test framework (jnewbery)3c5e6c9
[test] Add test for listaddressgroupings (jimmysong)75171f0
Remove unused import. Remove accidental trailing semicolons (practicalswift)83073de
[tests] allow zmq test to be run in out-of-tree builds (jnewbery)e927483
[tests] Fix abandonconflict.py intermittency (jnewbery)170bc2c
[tests] fix wait_for_inv() (jnewbery)fff72de
[tests] Add node methods to test framework (jnewbery)23d78c4
test: Add elapsed time to RPC tracing (laanwj)6a796b2
[tests] Improve mempool_persist test (jnewbery)776ba23
[tests] Update Unit Test for addrman.h/addrman.cpp (jimmysong)7ee5236
[tests] increase timeouts in sendheaders test (jnewbery)f6241b3
qa: disablewallet: Check that wallet is really disabled (MarcoFalke)4b766fc
[tests] Clean up addrman_tests.cpp (jimmysong)87abe20
[test] Add test for getnetworkhashps (jimmysong)8bd16ee
[tests] fix disconnect_ban intermittency (jnewbery)5411997
qa: Warn when specified test is not found (MarcoFalke)0542978
tests: Correct testcase in script_tests.json for large number OP_EQUAL (laanwj)6b99daf
tests: fix spurious addrman test failure (theuni)8e57256
[tests] improve tmpdir structure (jnewbery)217b416
[tests] Speed up fuzzing by ~200x when using afl-fuzz (practicalswift)b4b057a
Add test for empty chain and reorg consistency for gettxoutsetinfo (gmaxwell)1aefc94
[tests] skipped tests should clean up after themselves (jnewbery)329fc1d
[tests] functional tests should call BitcoinTestFramework start/stop node methods (jnewbery)e103b3f
Bugfix: missing == 0 after randrange (sipa)c871f32
[test] Add test for getchaintxstats (jimmysong)bea5b00
Remove xvfb configuration from travis (ryanofsky)30853e1
[qa] fundrawtx: Fix shutdown race (MarcoFalke)300f8e7
tests: Add FindEarliestAtLeast test for edge cases (ryanofsky)75e898c
Share config between util and functional tests (jnewbery)e801084
Use FastRandomContext for all tests (sipa)6c2d81f
[tests] Remove printf(…) (practicalswift)71ab6e5
[tests] Use FastRandomContext instead of boost::random::{mt19937,uniform_int_distribution} (practicalswift)6702617
[Tests] Wallet encryption functional tests (achow101)643fa0b
[tests] various improvements to zmq_test.py (jnewbery)d083bd9
[tests] Use cookie auth instead of rpcuser and rpcpassword (achow101)c68a9a6
qa: Add stopatheight test (MarcoFalke)4bc853b
[qa] util: Check return code after closing bitcoind proc (MarcoFalke)e0a7801
Initialize randomness in benchmarks (achow101)7c87a9c
The young person’s guide to the test_framework (jnewbery)acb1153
[qa] blockchain: Pass on closed connection during generate call (MarcoFalke)416af3e
[qa] Bugfix: allow overriding extra_args in ComparisonTestFramework (sdaftuar)65cc7aa
Move stop/start functions from utils.py into BitcoinTestFramework (jnewbery)dd07f47
[tests] nits in dbcrash.py (jnewbery)be82498
[test] don’t run dbcrash.py on Travis (jnewbery)d3b5870
[tests] fix replace_by_fee.py (jnewbery)1d4805c
Fix multi_rpc test for hosts that dont default to utf8 (TheBlueMatt)e4f226a
[tests] mining functional tests (including regression test for submitblock) (jnewbery)1fc783f
test: Move variable state
down where it is used (paveljanik)fee0d80
Fix mem access violation merkleblock (Christewart)0c173a1
[QA] Avoid running multiwallet.py twice (jonasschnelli)9d5e8f9
test: Make sure wallet.backup is created in temp path (laanwj)f29d5db
[test] Qt: Use _putenv_s instead of setenv on Windows builds (brianmcmichael)5c8eb79
[tests] Fix incorrect memory_cleanse(…) call in crypto_tests.cpp (practicalswift)fa8a063
[tests] Test disconnecting unsupported service bits logic (jnewbery)929fd72
[qa] Rewrite BIP65/BIP66 functional tests (sdaftuar)ecd2135
[bench] Restore format state of cout after printing with std::fixed/setprecision (practicalswift)e5d26e4
qa: Fix inv race in example_test (MarcoFalke)2c811e0
Tests: address placement should be deterministic by default (ReneNyffenegger)ac016e1
test: Add resendwallettransactions functional tests (promag)aeb3175
[qa] Fix block message processing error in sendheaders.py (sdaftuar)0b9fb68
[tests] fixup - make all Travis test runs quiet, non just cron job runs (jnewbery)6ce7337
[tests] test_runner - check unicode (jnewbery)35da2ae
[tests] remove import-abort-rescan.py (jnewbery)bf74d37
[tests] Add option to attach a python debugger if functional test fails (jnewbery)8c2098a
[coverage] Remove subtrees and benchmarks from coverage report (achow101)be8ba2c
Add a tree sha512 hash to merge commits (sipa)d19d45a
util: Specific GetOSRandom for Linux/FreeBSD/OpenBSD (laanwj)ba80a68
Docs: add details to -rpcclienttimeout doc (ian-kelling)53c300f
Docs: correct and elaborate -rpcbind doc (ian-kelling)01b7cda
[contrib] gh-merge: Move second sha512 check to the end (MarcoFalke)4df8213
Verify Tree-SHA512s in merge commits, enforce sigs are not SHA1 (TheBlueMatt)00c13ea
Fix verify-commits on travis and always check top commit’s tree (TheBlueMatt)6996e06
Add historical release notes for 0.14.0 (laanwj)fa99663
Fix verify-commits on OSX, update for new bad Tree-SHA512, point travis to different keyservers (TheBlueMatt)8040ae6
util: Properly handle errors during log message formatting (laanwj)cce056d
devtools: Make github-merge compute SHA512 from git, instead of worktree (laanwj)8bcf934
[doc] clarify blockchain size and pruning (askmike)0c17afc
Add updating of chainTxData to release process (sipa)530fcbd
add missing spaces so that markdown recognizes headline (flack)db1ae54
Docs: remove ‘noconnect’ option (jlopp)8e4f7e7
Update bitcoin.conf with example for pruning (coinables)1a5aaab
Change LogAcceptCategory to use uint32_t rather than sets of strings (gmaxwell)fbf36ca
Fix init README format to render correctly on github (jlopp)a2cd0b0
No need to use OpenSSL malloc/free (tjps)471ed00
Allow debug logs to be excluded from specified component (jnewbery)fadf078
linearize script: Option to use RPC cookie (achow101)a3a2160
[trivial] Log calls to getblocktemplate (jnewbery)928695b
build: Deduplicate version numbers (laanwj)a86255b
[doc] Contributor fixes & new “finding reviewers” section (kallewoof)1428f30
Fix some empty vector references (sipa)95f5e44
Remove Clang workaround for Boost 1.46 (fanquake)cb007e4
Trivial: fix fee estimate write error log message (CryptAxe)bd9ec0e
contrib: github-merge improvements (laanwj)1d75597
[doc] Minor corrections to osx dependencies (fanquake)750c5a5
devtools/net: add a verifier for scriptable changes. Use it to make CNode::id private (theuni)bc64b5a
Use hardware timestamps in RNG seeding (sipa)7f2b9e0
Shadowing warnings are not enabled by default, update doc accordingly (paveljanik)b6ee855
[doc] Removing comments about dirty entries on txmempool (madeo)d0c37ee
[logging] log system time and mock time (jnewbery)b45a52a
doc: Add logging to FinalizeNode() (sdaftuar)526e839
Output line to debug.log when IsInitialBlockDownload latches to false (morcos)15254e9
Add perf counter data to GetStrongRandBytes state in scheduler (TheBlueMatt)55b72f3
Update style guide (sipa)10e8c0a
devtools: Retry after signing fails in github-merge (laanwj)f259263
Make bitcoind invalid argument error message specific (laanwj)6a38b79
contrib: Update location of seeds.txt (laanwj)b6b150b
Fixing typo in rpcdump.cpp help message (keystrike)27b9931
contrib/init/bitcoind.openrcconf: Don’t disable wallet by default (luke-jr)00d3692
Update to latest libsecp256k1 master (sipa)cec9e1e
Fix timestamp in fee estimate debug message (morcos)5d034ee
[docs] Use the “domain name setup” image (previously unused) in the gitian docs (practicalswift)a514ac3
Clarify prevector::erase and avoid swap-to-clear (sipa)22ec768
Header include guideline (sipa)fbf5d3b
Improve commit-check-script.sh (sipa)1ad3d4e
scripted-diff: Remove BOOST_FOREACH, Q_FOREACH and PAIRTYPE (jtimon)b63be2c
Use rdrand as entropy source on supported platforms (sipa)228c319
Turn TryCreateDirectory() into TryCreateDirectories() (benma)d76e84a
Make clang-format use C++11 features (e.g. A