/ doc / release-notes / release-notes-0.18.0.md
release-notes-0.18.0.md
   1  Bitcoin Core version 0.18.0 is now available from:
   2  
   3    <https://bitcoincore.org/bin/bitcoin-core-0.18.0/>
   4  
   5  This is a new major version release, including new features, various bug
   6  fixes and performance improvements, as well as updated translations.
   7  
   8  Please report bugs using the issue tracker at GitHub:
   9  
  10    <https://github.com/bitcoin/bitcoin/issues>
  11  
  12  To receive security and update notifications, please subscribe to:
  13  
  14    <https://bitcoincore.org/en/list/announcements/join/>
  15  
  16  How to Upgrade
  17  ==============
  18  
  19  If you are running an older version, shut it down. Wait until it has
  20  completely shut down (which might take a few minutes for older
  21  versions), then run the installer (on Windows) or just copy over
  22  `/Applications/Bitcoin-Qt` (on Mac) or `bitcoind`/`bitcoin-qt` (on
  23  Linux).
  24  
  25  The first time you run version 0.15.0 or newer, your chainstate database
  26  will be converted to a new format, which will take anywhere from a few
  27  minutes to half an hour, depending on the speed of your machine.
  28  
  29  Note that the block database format also changed in version 0.8.0 and
  30  there is no automatic upgrade code from before version 0.8 to version
  31  0.15.0 or later. Upgrading directly from 0.7.x and earlier without
  32  redownloading the blockchain is not supported.  However, as usual, old
  33  wallet versions are still supported.
  34  
  35  Compatibility
  36  ==============
  37  
  38  Bitcoin Core is supported and extensively tested on operating systems
  39  using the Linux kernel, macOS 10.10+, and Windows 7 and newer. It is not
  40  recommended to use Bitcoin Core on unsupported systems.
  41  
  42  Bitcoin Core should also work on most other Unix-like systems but is not
  43  as frequently tested on them.
  44  
  45  From 0.17.0 onwards, macOS <10.10 is no longer supported. 0.17.0 is
  46  built using Qt 5.9.x, which doesn't support versions of macOS older than
  47  10.10. Additionally, Bitcoin Core does not yet change appearance when
  48  macOS "dark mode" is activated.
  49  
  50  In addition to previously-supported CPU platforms, this release's
  51  pre-compiled distribution also provides binaries for the RISC-V
  52  platform.
  53  
  54  If you are using the `systemd` unit configuration file located at
  55  `contrib/init/bitcoind.service`, it has been changed to use
  56  `/var/lib/bitcoind` as the data directory instead of
  57  `~bitcoin/.bitcoin`. When switching over to the new configuration file,
  58  please make sure that the filesystem on which `/var/lib/bitcoind` will
  59  exist has enough space (check using `df -h /var/lib/bitcoind`), and
  60  optionally copy over your existing data directory. See the [systemd init
  61  file section](#systemd-init-file) for more details.
  62  
  63  Known issues
  64  ============
  65  
  66  Wallet GUI
  67  ----------
  68  
  69  For advanced users who have both (1) enabled coin control features, and
  70  (2) are using multiple wallets loaded at the same time: The coin control
  71  input selection dialog can erroneously retain wrong-wallet state when
  72  switching wallets using the dropdown menu. For now, it is recommended
  73  not to use coin control features with multiple wallets loaded.
  74  
  75  Notable changes
  76  ===============
  77  
  78  Mining
  79  ------
  80  
  81  - Calls to `getblocktemplate` will fail if the segwit rule is not
  82    specified.  Calling `getblocktemplate` without segwit specified is
  83    almost certainly a misconfiguration since doing so results in lower
  84    rewards for the miner.  Failed calls will produce an error message
  85    describing how to enable the segwit rule.
  86  
  87  Configuration option changes
  88  ----------------------------
  89  
  90  - A warning is printed if an unrecognized section name is used in the
  91    configuration file.  Recognized sections are `[test]`, `[main]`, and
  92    `[regtest]`.
  93  
  94  - Four new options are available for configuring the maximum number of
  95    messages that ZMQ will queue in memory (the "high water mark") before
  96    dropping additional messages.  The default value is 1,000, the same as
  97    was used for previous releases.  See the [ZMQ
  98    documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/zmq.md#usage)
  99    for details.
 100  
 101  - The `rpcallowip` option can no longer be used to automatically listen
 102    on all network interfaces.  Instead, the `rpcbind` parameter must be
 103    used to specify the IP addresses to listen on.  Listening for RPC
 104    commands over a public network connection is insecure and should be
 105    disabled, so a warning is now printed if a user selects such a
 106    configuration.  If you need to expose RPC in order to use a tool like
 107    Docker, ensure you only bind RPC to your localhost, e.g. `docker run
 108    [...] -p 127.0.0.1:8332:8332` (this is an extra `:8332` over the
 109    normal Docker port specification).
 110  
 111  - The `rpcpassword` option now causes a startup error if the password
 112    set in the configuration file contains a hash character (#), as it's
 113    ambiguous whether the hash character is meant for the password or as a
 114    comment.
 115  
 116  - The `whitelistforcerelay` option is used to relay transactions from
 117    whitelisted peers even when not accepted to the mempool. This option
 118    now defaults to being off, so that changes in policy and
 119    disconnect/ban behavior will not cause a node that is whitelisting
 120    another to be dropped by peers.  Users can still explicitly enable
 121    this behavior with the command line option (and may want to consider
 122    [contacting](https://bitcoincore.org/en/contact/) the Bitcoin Core
 123    project to let us know about their use-case, as this feature could be
 124    deprecated in the future).
 125  
 126  systemd init file
 127  -----------------
 128  
 129  The systemd init file (`contrib/init/bitcoind.service`) has been changed
 130  to use `/var/lib/bitcoind` as the data directory instead of
 131  `~bitcoin/.bitcoin`. This change makes Bitcoin Core more consistent with
 132  other services, and makes the systemd init config more consistent with
 133  existing Upstart and OpenRC configs.
 134  
 135  The configuration, PID, and data directories are now completely managed
 136  by systemd, which will take care of their creation, permissions, etc.
 137  See [`systemd.exec(5)`](https://www.freedesktop.org/software/systemd/man/systemd.exec.html#RuntimeDirectory=)
 138  for more details.
 139  
 140  When using the provided init files under `contrib/init`, overriding the
 141  `datadir` option in `/etc/bitcoin/bitcoin.conf` will have no effect.
 142  This is because the command line arguments specified in the init files
 143  take precedence over the options specified in
 144  `/etc/bitcoin/bitcoin.conf`.
 145  
 146  
 147  Documentation
 148  -------------
 149  
 150  - A new short [document](https://github.com/bitcoin/bitcoin/blob/master/doc/JSON-RPC-interface.md)
 151    about the JSON-RPC interface describes cases where the results of an
 152    RPC might contain inconsistencies between data sourced from different
 153    subsystems, such as wallet state and mempool state.  A note is added
 154    to the [REST interface documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/REST-interface.md)
 155    indicating that the same rules apply.
 156  
 157  - Further information is added to the [JSON-RPC
 158    documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/JSON-RPC-interface.md)
 159    about how to secure this interface.
 160  
 161  - A new [document](https://github.com/bitcoin/bitcoin/blob/master/doc/bitcoin-conf.md)
 162    about the `bitcoin.conf` file describes how to use it to configure
 163    Bitcoin Core.
 164  
 165  - A new document introduces Bitcoin Core's BIP174 [Partially-Signed
 166    Bitcoin Transactions
 167    (PSBT)](https://github.com/bitcoin/bitcoin/blob/master/doc/psbt.md)
 168    interface, which is used to allow multiple programs to collaboratively
 169    work to create, sign, and broadcast new transactions.  This is useful
 170    for offline (cold storage) wallets, multisig wallets, coinjoin
 171    implementations, and many other cases where two or more programs need
 172    to interact to generate a complete transaction.
 173  
 174  - The [output script
 175    descriptor](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md)
 176    documentation has been updated with information about new features in
 177    this still-developing language for describing the output scripts that
 178    a wallet or other program wants to receive notifications for, such as
 179    which addresses it wants to know received payments.  The language is
 180    currently used in multiple new and updated RPCs described in these
 181    release notes and is expected to be adapted to other RPCs and to the
 182    underlying wallet structure.
 183  
 184  Build system changes
 185  --------------------
 186  
 187  - A new `--disable-bip70` option may be passed to `./configure` to
 188    prevent Bitcoin-Qt from being built with support for the BIP70 payment
 189    protocol or from linking libssl.  As the payment protocol has exposed
 190    Bitcoin Core to libssl vulnerabilities in the past, builders who don't
 191    need BIP70 support are encouraged to use this option to reduce their
 192    exposure to future vulnerabilities.
 193  
 194  - The minimum required version of Qt (when building the GUI) has been
 195    increased from 5.2 to 5.5.1 (the [depends
 196    system](https://github.com/bitcoin/bitcoin/blob/master/depends/README.md)
 197    provides 5.9.7)
 198  
 199  New RPCs
 200  --------
 201  
 202  - `getnodeaddresses` returns peer addresses known to this node. It may
 203    be used to find nodes to connect to without using a DNS seeder.
 204  
 205  - `listwalletdir` returns a list of wallets in the wallet directory
 206    (either the default wallet directory or the directory configured by
 207    the `-walletdir` parameter).
 208  
 209  - `getrpcinfo` returns runtime details of the RPC server. At the moment,
 210    it returns an array of the currently active commands and how long
 211    they've been running.
 212  
 213  - `deriveaddresses` returns one or more addresses corresponding to an
 214    [output descriptor](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md).
 215  
 216  - `getdescriptorinfo` accepts a descriptor and returns information about
 217    it, including its computed checksum.
 218  
 219  - `joinpsbts` merges multiple distinct PSBTs into a single PSBT. The
 220    multiple PSBTs must have different inputs. The resulting PSBT will
 221    contain every input and output from all of the PSBTs. Any signatures
 222    provided in any of the PSBTs will be dropped.
 223  
 224  - `analyzepsbt` examines a PSBT and provides information about what
 225    the PSBT contains and the next steps that need to be taken in order
 226    to complete the transaction. For each input of a PSBT, `analyzepsbt`
 227    provides information about what information is missing for that
 228    input, including whether a UTXO needs to be provided, what pubkeys
 229    still need to be provided, which scripts need to be provided, and
 230    what signatures are still needed. Every input will also list which
 231    role is needed to complete that input, and `analyzepsbt` will also
 232    list the next role in general needed to complete the PSBT.
 233    `analyzepsbt` will also provide the estimated fee rate and estimated
 234    virtual size of the completed transaction if it has enough
 235    information to do so.
 236  
 237  - `utxoupdatepsbt` searches the set of Unspent Transaction Outputs
 238    (UTXOs) to find the outputs being spent by the partial transaction.
 239    PSBTs need to have the UTXOs being spent to be provided because
 240    the signing algorithm requires information from the UTXO being spent.
 241    For segwit inputs, only the UTXO itself is necessary.  For
 242    non-segwit outputs, the entire previous transaction is needed so
 243    that signers can be sure that they are signing the correct thing.
 244    Unfortunately, because the UTXO set only contains UTXOs and not full
 245    transactions, `utxoupdatepsbt` will only add the UTXO for segwit
 246    inputs.
 247  
 248  Updated RPCs
 249  ------------
 250  
 251  Note: some low-level RPC changes mainly useful for testing are described
 252  in the Low-level Changes section below.
 253  
 254  - `getpeerinfo` now returns an additional `minfeefilter` field set to
 255    the peer's BIP133 fee filter.  You can use this to detect that you
 256    have peers that are willing to accept transactions below the default
 257    minimum relay fee.
 258  
 259  - The mempool RPCs, such as `getrawmempool` with `verbose=true`, now
 260    return an additional "bip125-replaceable" value indicating whether the
 261    transaction (or its unconfirmed ancestors) opts-in to asking nodes and
 262    miners to replace it with a higher-feerate transaction spending any of
 263    the same inputs.
 264  
 265  - `settxfee` previously silently ignored attempts to set the fee below
 266    the allowed minimums.  It now prints a warning.  The special value of
 267    "0" may still be used to request the minimum value.
 268  
 269  - `getaddressinfo` now provides an `ischange` field indicating whether
 270    the wallet used the address in a change output.
 271  
 272  - `importmulti` has been updated to support P2WSH, P2WPKH, P2SH-P2WPKH,
 273    and P2SH-P2WSH. Requests for P2WSH and P2SH-P2WSH accept an additional
 274    `witnessscript` parameter.
 275  
 276  - `importmulti` now returns an additional `warnings` field for each
 277    request with an array of strings explaining when fields are being
 278    ignored or are inconsistent, if there are any.
 279  
 280  - `getaddressinfo` now returns an additional `solvable` boolean field
 281    when Bitcoin Core knows enough about the address's scriptPubKey,
 282    optional redeemScript, and optional witnessScript in order for the
 283    wallet to be able to generate an unsigned input spending funds sent to
 284    that address.
 285  
 286  - The `getaddressinfo`, `listunspent`, and `scantxoutset` RPCs now
 287    return an additional `desc` field that contains an output descriptor
 288    containing all key paths and signing information for the address
 289    (except for the private key).  The `desc` field is only returned for
 290    `getaddressinfo` and `listunspent` when the address is solvable.
 291  
 292  - `importprivkey` will preserve previously-set labels for addresses or
 293    public keys corresponding to the private key being imported.  For
 294    example, if you imported a watch-only address with the label "cold
 295    wallet" in earlier releases of Bitcoin Core, subsequently importing
 296    the private key would default to resetting the address's label to the
 297    default empty-string label ("").  In this release, the previous label
 298    of "cold wallet" will be retained.  If you optionally specify any
 299    label besides the default when calling `importprivkey`, the new label
 300    will be applied to the address.
 301  
 302  - See the [Mining](#mining) section for changes to `getblocktemplate`.
 303  
 304  - `getmininginfo` now omits `currentblockweight` and `currentblocktx`
 305    when a block was never assembled via RPC on this node.
 306  
 307  - The `getrawtransaction` RPC & REST endpoints no longer check the
 308    unspent UTXO set for a transaction. The remaining behaviors are as
 309    follows: 1. If a blockhash is provided, check the corresponding block.
 310    2. If no blockhash is provided, check the mempool. 3. If no blockhash
 311    is provided but txindex is enabled, also check txindex.
 312  
 313  - `unloadwallet` is now synchronous, meaning it will not return until
 314    the wallet is fully unloaded.
 315  
 316  - `importmulti` now supports importing of addresses from descriptors. A
 317    "desc" parameter can be provided instead of the "scriptPubKey" in a
 318    request, as well as an optional range for ranged descriptors to
 319    specify the start and end of the range to import. Descriptors with key
 320    origin information imported through `importmulti` will have their key
 321    origin information stored in the wallet for use with creating PSBTs.
 322    More information about descriptors can be found
 323    [here](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md).
 324  
 325  - `listunspent` has been modified so that it also returns
 326    `witnessScript`, the witness script in the case of a P2WSH or
 327    P2SH-P2WSH output.
 328  
 329  - `createwallet` now has an optional `blank` argument that can be used
 330    to create a blank wallet. Blank wallets do not have any keys or HD
 331    seed.  They cannot be opened in software older than 0.18. Once a blank
 332    wallet has a HD seed set (by using `sethdseed`) or private keys,
 333    scripts, addresses, and other watch only things have been imported,
 334    the wallet is no longer blank and can be opened in 0.17.x. Encrypting
 335    a blank wallet will also set a HD seed for it.
 336  
 337  Deprecated or removed RPCs
 338  --------------------------
 339  
 340  - `signrawtransaction` is removed after being deprecated and hidden
 341    behind a special configuration option in version 0.17.0.
 342  
 343  - The 'account' API is removed after being deprecated in v0.17.  The
 344    'label' API was introduced in v0.17 as a replacement for accounts.
 345    See the [release notes from
 346    v0.17](https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-0.17.0.md#label-and-account-apis-for-wallet)
 347    for a full description of the changes from the 'account' API to the
 348    'label' API.
 349  
 350  - `addwitnessaddress` is removed after being deprecated in version
 351    0.16.0.
 352  
 353  - `generate` is deprecated and will be fully removed in a subsequent
 354    major version.  This RPC is only used for testing, but its
 355    implementation reached across multiple subsystems (wallet and mining),
 356    so it is being deprecated to simplify the wallet-node interface.
 357    Projects that are using `generate` for testing purposes should
 358    transition to using the `generatetoaddress` RPC, which does not
 359    require or use the wallet component. Calling `generatetoaddress` with
 360    an address returned by the `getnewaddress` RPC gives the same
 361    functionality as the old `generate` RPC.  To continue using `generate`
 362    in this version, restart bitcoind with the `-deprecatedrpc=generate`
 363    configuration option.
 364  
 365  - Be reminded that parts of the `validateaddress` command have been
 366    deprecated and moved to `getaddressinfo`. The following deprecated
 367    fields have moved to `getaddressinfo`: `ismine`, `iswatchonly`,
 368    `script`, `hex`, `pubkeys`, `sigsrequired`, `pubkey`, `embedded`,
 369    `iscompressed`, `label`, `timestamp`, `hdkeypath`, `hdmasterkeyid`.
 370  
 371  - The `addresses` field has been removed from the `validateaddress`
 372    and `getaddressinfo` RPC methods.  This field was confusing since
 373    it referred to public keys using their P2PKH address.  Clients
 374    should use the `embedded.address` field for P2SH or P2WSH wrapped
 375    addresses, and `pubkeys` for inspecting multisig participants.
 376  
 377  REST changes
 378  ------------
 379  
 380  - A new `/rest/blockhashbyheight/` endpoint is added for fetching the
 381    hash of the block in the current best blockchain based on its height
 382    (how many blocks it is after the Genesis Block).
 383  
 384  Graphical User Interface (GUI)
 385  ------------------------------
 386  
 387  - A new Window menu is added alongside the existing File, Settings, and
 388    Help menus.  Several items from the other menus that opened new
 389    windows have been moved to this new Window menu.
 390  
 391  - In the Send tab, the checkbox for "pay only the required fee" has been
 392    removed.  Instead, the user can simply decrease the value in the
 393    Custom Feerate field all the way down to the node's configured minimum
 394    relay fee.
 395  
 396  - In the Overview tab, the watch-only balance will be the only balance
 397    shown if the wallet was created using the `createwallet` RPC and the
 398    `disable_private_keys` parameter was set to true.
 399  
 400  - The launch-on-startup option is no longer available on macOS if
 401    compiled with macosx min version greater than 10.11 (use
 402    CXXFLAGS="-mmacosx-version-min=10.11"
 403    CFLAGS="-mmacosx-version-min=10.11" for setting the deployment sdk
 404    version)
 405  
 406  Tools
 407  -----
 408  
 409  - A new `bitcoin-wallet` tool is now distributed alongside Bitcoin
 410    Core's other executables.  Without needing to use any RPCs, this tool
 411    can currently create a new wallet file or display some basic
 412    information about an existing wallet, such as whether the wallet is
 413    encrypted, whether it uses an HD seed, how many transactions it
 414    contains, and how many address book entries it has.
 415  
 416  Planned changes
 417  ===============
 418  
 419  This section describes planned changes to Bitcoin Core that may affect
 420  other Bitcoin software and services.
 421  
 422  - Since version 0.16.0, Bitcoin Core’s built-in wallet has defaulted to
 423    generating P2SH-wrapped segwit addresses when users want to receive
 424    payments. These addresses are backwards compatible with all
 425    widely-used software.  Starting with Bitcoin Core 0.20 (expected about
 426    a year after 0.18), Bitcoin Core will default to native segwit
 427    addresses (bech32) that provide additional fee savings and other
 428    benefits. Currently, many wallets and services already support sending
 429    to bech32 addresses, and if the Bitcoin Core project sees enough
 430    additional adoption, it will instead default to bech32 receiving
 431    addresses in Bitcoin Core 0.19 (approximately November 2019).
 432    P2SH-wrapped segwit addresses will continue to be provided if the user
 433    requests them in the GUI or by RPC, and anyone who doesn’t want the
 434    update will be able to configure their default address type.
 435    (Similarly, pioneering users who want to change their default now may
 436    set the `addresstype=bech32` configuration option in any Bitcoin Core
 437    release from 0.16.0 up.)
 438  
 439  Deprecated P2P messages
 440  -----------------------
 441  
 442  - BIP 61 reject messages are now deprecated. Reject messages have no use
 443    case on the P2P network and are only logged for debugging by most
 444    network nodes. Furthermore, they increase bandwidth and can be harmful
 445    for privacy and security. It has been possible to disable BIP 61
 446    messages since v0.17 with the `-enablebip61=0` option. BIP 61 messages
 447    will be disabled by default in a future version, before being removed
 448    entirely.
 449  
 450  Low-level changes
 451  =================
 452  
 453  This section describes RPC changes mainly useful for testing, mostly not
 454  relevant in production. The changes are mentioned for completeness.
 455  
 456  RPC
 457  ---
 458  
 459  - The `submitblock` RPC previously returned the reason a rejected block
 460    was invalid the first time it processed that block, but returned a
 461    generic "duplicate" rejection message on subsequent occasions it
 462    processed the same block.  It now always returns the fundamental
 463    reason for rejecting an invalid block and only returns "duplicate" for
 464    valid blocks it has already accepted.
 465  
 466  - A new `submitheader` RPC allows submitting block headers independently
 467    from their block.  This is likely only useful for testing.
 468  
 469  - The `signrawtransactionwithkey` and `signrawtransactionwithwallet`
 470    RPCs have been modified so that they also optionally accept a
 471    `witnessScript`, the witness script in the case of a P2WSH or
 472    P2SH-P2WSH output. This is compatible with the change to
 473    `listunspent`.
 474  
 475  - For the `walletprocesspsbt` and `walletcreatefundedpsbt` RPCs, if the
 476    `bip32derivs` parameter is set to true but the key metadata for a
 477    public key has not been updated yet, then that key will have a
 478    derivation path as if it were just an independent key (i.e. no
 479    derivation path and its master fingerprint is itself).
 480  
 481  Configuration
 482  -------------
 483  
 484  - The `-usehd` configuration option was removed in version 0.16. From
 485    that version onwards, all new wallets created are hierarchical
 486    deterministic wallets. This release makes specifying `-usehd` an
 487    invalid configuration option.
 488  
 489  Network
 490  -------
 491  
 492  - This release allows peers that your node automatically disconnected
 493    for misbehavior (e.g. sending invalid data) to reconnect to your node
 494    if you have unused incoming connection slots.  If your slots fill up,
 495    a misbehaving node will be disconnected to make room for nodes without
 496    a history of problems (unless the misbehaving node helps your node in
 497    some other way, such as by connecting to a part of the Internet from
 498    which you don't have many other peers).  Previously, Bitcoin Core
 499    banned the IP addresses of misbehaving peers for a period of time
 500    (default of 1 day); this was easily circumvented by attackers with
 501    multiple IP addresses. If you manually ban a peer, such as by using
 502    the `setban` RPC, all connections from that peer will still be
 503    rejected.
 504  
 505  Wallet
 506  -------
 507  
 508  - The key metadata will need to be upgraded the first time that the HD
 509    seed is available.  For unencrypted wallets this will occur on wallet
 510    loading.  For encrypted wallets this will occur the first time the
 511    wallet is unlocked.
 512  
 513  - Newly encrypted wallets will no longer require restarting the
 514    software. Instead such wallets will be completely unloaded and
 515    reloaded to achieve the same effect.
 516  
 517  - A sub-project of Bitcoin Core now provides Hardware Wallet Interaction
 518    (HWI) scripts that allow command-line users to use several popular
 519    hardware key management devices with Bitcoin Core.  See their [project
 520    page](https://github.com/bitcoin-core/HWI#readme) for details.
 521  
 522  Security
 523  --------
 524  
 525  - This release changes the Random Number Generator (RNG) used from
 526    OpenSSL to Bitcoin Core's own implementation, although entropy
 527    gathered by Bitcoin Core is fed out to OpenSSL and then read back in
 528    when the program needs strong randomness. This moves Bitcoin Core a
 529    little closer to no longer needing to depend on OpenSSL, a dependency
 530    that has caused security issues in the past.  The new implementation
 531    gathers entropy from multiple sources, including from hardware
 532    supporting the rdseed CPU instruction.
 533  
 534  Changes for particular platforms
 535  --------------------------------
 536  
 537  - On macOS, Bitcoin Core now opts out of application CPU throttling
 538    ("app nap") during initial blockchain download, when catching up from
 539    over 100 blocks behind the current chain tip, or when reindexing chain
 540    data. This helps prevent these operations from taking an excessively
 541    long time because the operating system is attempting to conserve
 542    power.
 543  
 544  0.18.0 change log
 545  =================
 546  
 547  ### Consensus
 548  - #14247 Fix crash bug with duplicate inputs within a transaction (TheBlueMatt)
 549  
 550  ### Mining
 551  - #14811 Mining: Enforce that segwit option must be set in GBT (jnewbery)
 552  
 553  ### Block and transaction handling
 554  - #13310 Report progress in ReplayBlocks while rolling forward (promag)
 555  - #13783 validation: Pass tx pool reference into CheckSequenceLocks (MarcoFalke)
 556  - #14834 validation: Assert that pindexPrev is non-null when required (kallewoof)
 557  - #14085 index: Fix for indexers skipping genesis block (jimpo)
 558  - #14963 mempool, validation: Explain `cs_main` locking semantics (MarcoFalke)
 559  - #15193 Default `-whitelistforcerelay` to off (sdaftuar)
 560  - #15429 Update `assumevalid`, `minimumchainwork`, and `getchaintxstats` to height 563378 (gmaxwell)
 561  - #15552 Granular invalidateblock and RewindBlockIndex (MarcoFalke)
 562  - #14841 Move CheckBlock() call to critical section (hebasto)
 563  
 564  ### P2P protocol and network code
 565  - #14025 Remove dead code for nVersion=10300 (MarcoFalke)
 566  - #12254 BIP 158: Compact Block Filters for Light Clients (jimpo)
 567  - #14073 blockfilter: Avoid out-of-bounds script access (jimpo)
 568  - #14140 Switch nPrevNodeCount to vNodesSize (pstratem)
 569  - #14027 Skip stale tip checking if outbound connections are off or if reindexing (gmaxwell)
 570  - #14532 Never bind `INADDR_ANY` by default, and warn when doing so explicitly (luke-jr)
 571  - #14733 Make peer timeout configurable, speed up very slow test and ensure correct code path tested (zallarak)
 572  - #14336 Implement poll (pstratem)
 573  - #15051 IsReachable is the inverse of IsLimited (DRY). Includes unit tests (mmachicao)
 574  - #15138 Drop IsLimited in favor of IsReachable (Empact)
 575  - #14605 Return of the Banman (dongcarl)
 576  - #14970 Add dnsseed.emzy.de to DNS seeds (Emzy)
 577  - #14929 Allow connections from misbehavior banned peers (gmaxwell)
 578  - #15345 Correct comparison of addr count (dongcarl)
 579  - #15201 Add missing locking annotation for vNodes. vNodes is guarded by cs_vNodes (practicalswift)
 580  - #14626 Select orphan transaction uniformly for eviction (sipa)
 581  - #15486 Ensure tried collisions resolve, and allow feeler connections to existing outbound netgroups (sdaftuar)
 582  
 583  ### Wallet
 584  - #13962 Remove unused `dummy_tx` variable from FillPSBT (dongcarl)
 585  - #13967 Don't report `minversion` wallet entry as unknown (instagibbs)
 586  - #13988 Add checks for settxfee reasonableness (ajtowns)
 587  - #12559 Avoid locking `cs_main` in some wallet RPC (promag)
 588  - #13631 Add CMerkleTx::IsImmatureCoinBase method (Empact)
 589  - #14023 Remove accounts RPCs (jnewbery)
 590  - #13825 Kill accounts (jnewbery)
 591  - #10605 Add AssertLockHeld assertions in CWallet::ListCoins (ryanofsky)
 592  - #12490 Remove deprecated wallet rpc features from `bitcoin_server` (jnewbery)
 593  - #14138 Set `encrypted_batch` to nullptr after delete. Avoid double free in the case of NDEBUG (practicalswift)
 594  - #14168 Remove `ENABLE_WALLET` from `libbitcoin_server.a` (jnewbery)
 595  - #12493 Reopen CDBEnv after encryption instead of shutting down (achow101)
 596  - #14282 Remove `-usehd` option (jnewbery)
 597  - #14146 Remove trailing separators from `-walletdir` arg (PierreRochard)
 598  - #14291 Add ListWalletDir utility function (promag)
 599  - #14468 Deprecate `generate` RPC method (jnewbery)
 600  - #11634 Add missing `cs_wallet`/`cs_KeyStore` locks to wallet (practicalswift)
 601  - #14296 Remove `addwitnessaddress` (jnewbery)
 602  - #14451 Add BIP70 deprecation warning and allow building GUI without BIP70 support (jameshilliard)
 603  - #14320 Fix duplicate fileid detection (ken2812221)
 604  - #14561 Remove `fs::relative` call and fix listwalletdir tests (promag)
 605  - #14454 Add SegWit support to importmulti (MeshCollider)
 606  - #14410 rpcwallet: `ischange` field for `getaddressinfo` RPC (mrwhythat)
 607  - #14350 Add WalletLocation class (promag)
 608  - #14689 Require a public key to be retrieved when signing a P2PKH input (achow101)
 609  - #14478 Show error to user when corrupt wallet unlock fails (MeshCollider)
 610  - #14411 Restore ability to list incoming transactions by label (ryanofsky)
 611  - #14552 Detect duplicate wallet by comparing the db filename (ken2812221)
 612  - #14678 Remove redundant KeyOriginInfo access, already done in CreateSig (instagibbs)
 613  - #14477 Add ability to convert solvability info to descriptor (sipa)
 614  - #14380 Fix assert crash when specified change output spend size is unknown (instagibbs)
 615  - #14760 Log env path in `BerkeleyEnvironment::Flush` (promag)
 616  - #14646 Add expansion cache functions to descriptors (unused for now) (sipa)
 617  - #13076 Fix ScanForWalletTransactions to return an enum indicating scan result: `success` / `failure` / `user_abort` (Empact)
 618  - #14821 Replace CAffectedKeysVisitor with descriptor based logic (sipa)
 619  - #14957 Initialize `stop_block` in CWallet::ScanForWalletTransactions (Empact)
 620  - #14565 Overhaul `importmulti` logic (sipa)
 621  - #15039 Avoid leaking nLockTime fingerprint when anti-fee-sniping (MarcoFalke)
 622  - #14268 Introduce SafeDbt to handle Dbt with free or `memory_cleanse` raii-style (Empact)
 623  - #14711 Remove uses of chainActive and mapBlockIndex in wallet code (ryanofsky)
 624  - #15279 Clarify rescanblockchain doc (MarcoFalke)
 625  - #15292 Remove `boost::optional`-related false positive -Wmaybe-uninitialized warnings on GCC compiler (hebasto)
 626  - #13926 [Tools] bitcoin-wallet - a tool for creating and managing wallets offline (jnewbery)
 627  - #11911 Free BerkeleyEnvironment instances when not in use (ryanofsky)
 628  - #15235 Do not import private keys to wallets with private keys disabled (achow101)
 629  - #15263 Descriptor expansions only need pubkey entries for PKH/WPKH (sipa)
 630  - #15322 Add missing `cs_db` lock (promag)
 631  - #15297 Releases dangling files on `BerkeleyEnvironment::Close` (promag)
 632  - #14491 Allow descriptor imports with importmulti (MeshCollider)
 633  - #15365 Add lock annotation for mapAddressBook (MarcoFalke)
 634  - #15226 Allow creating blank (empty) wallets (alternative) (achow101)
 635  - #15390 [wallet-tool] Close bdb when flushing wallet (jnewbery)
 636  - #15334 Log absolute paths for the wallets (hebasto)
 637  - #14978 Factor out PSBT utilities from RPCs for use in GUI code; related refactoring (gwillen)
 638  - #14481 Add P2SH-P2WSH support to listunspent RPC (MeshCollider)
 639  - #14021 Import key origin data through descriptors in importmulti (achow101)
 640  - #14075 Import watch only pubkeys to the keypool if private keys are disabled (achow101)
 641  - #15368 Descriptor checksums (sipa)
 642  - #15433 Use a single wallet batch for `UpgradeKeyMetadata` (jonasschnelli)
 643  - #15408 Remove unused `TransactionError` constants (MarcoFalke)
 644  - #15583 Log and ignore errors in ListWalletDir and IsBerkeleyBtree (promag)
 645  - #14195 Pass privkey export DER compression flag correctly (fingera)
 646  - #15299 Fix assertion in `CKey::SignCompact` (promag)
 647  - #14437 Start to separate wallet from node (ryanofsky)
 648  - #15749 Fix: importmulti only imports origin info for PKH outputs (sipa)
 649  
 650  ### RPC and other APIs
 651  - #12842 Prevent concurrent `savemempool` (promag)
 652  - #13987 Report `minfeefilter` value in `getpeerinfo` RPC (ajtowns)
 653  - #13891 Remove getinfo deprecation warning (jnewbery)
 654  - #13399 Add `submitheader` (MarcoFalke)
 655  - #12676 Show `bip125-replaceable` flag, when retrieving mempool entries (dexX7)
 656  - #13723 PSBT key path cleanups (sipa)
 657  - #14008 Preserve a format of RPC command definitions (kostyantyn)
 658  - #9332 Let wallet `importmulti` RPC accept labels for standard scriptPubKeys (ryanofsky)
 659  - #13983 Return more specific reject reason for submitblock (MarcoFalke)
 660  - #13152 Add getnodeaddresses RPC command (chris-belcher)
 661  - #14298 rest: Improve performance for JSON calls (alecalve)
 662  - #14297 Remove warning for removed estimatefee RPC (jnewbery)
 663  - #14373 Consistency fixes for RPC descriptions (ch4ot1c)
 664  - #14150 Add key origin support to descriptors (sipa)
 665  - #14518 Always throw in getblockstats if `-txindex` is required (promag)
 666  - #14060 ZMQ: add options to configure outbound message high water mark, aka SNDHWM (mruddy)
 667  - #13381 Add possibility to preserve labels on importprivkey (marcoagner)
 668  - #14530 Use `RPCHelpMan` to generate RPC doc strings (MarcoFalke)
 669  - #14720 Correctly name RPC arguments (MarcoFalke)
 670  - #14726 Use `RPCHelpMan` for all RPCs (MarcoFalke)
 671  - #14796 Pass argument descriptions to `RPCHelpMan` (MarcoFalke)
 672  - #14670 http: Fix HTTP server shutdown (promag)
 673  - #14885 Assert that named arguments are unique in `RPCHelpMan` (promag)
 674  - #14877 Document default values for optional arguments (MarcoFalke)
 675  - #14875 RPCHelpMan: Support required arguments after optional ones (MarcoFalke)
 676  - #14993 Fix data race (UB) in InterruptRPC() (practicalswift)
 677  - #14653 rpcwallet: Add missing transaction categories to RPC helptexts (andrewtoth)
 678  - #14981 Clarify RPC `getrawtransaction`'s time help text (benthecarman)
 679  - #12151 Remove `cs_main` lock from blockToJSON and blockheaderToJSON (promag)
 680  - #15078 Document `bytessent_per_msg` and `bytesrecv_per_msg` (MarcoFalke)
 681  - #15057 Correct `reconsiderblock `help text, add test (MarcoFalke)
 682  - #12153 Avoid permanent `cs_main` lock in `getblockheader` (promag)
 683  - #14982 Add `getrpcinfo` command (promag)
 684  - #15122 Expand help text for `importmulti` changes (jnewbery)
 685  - #15186 remove duplicate solvable field from `getaddressinfo` (fanquake)
 686  - #15209 zmq: log outbound message high water mark when reusing socket (fanquake)
 687  - #15177 rest: Improve tests and documention of /headers and /block (promag)
 688  - #14353 rest: Add blockhash call, fetch blockhash by height (jonasschnelli)
 689  - #15248 Compile on GCC4.8 (MarcoFalke)
 690  - #14987 RPCHelpMan: Pass through Result and Examples (MarcoFalke)
 691  - #15159 Remove lookup to UTXO set from GetTransaction (amitiuttarwar)
 692  - #15245 remove deprecated mentions of signrawtransaction from fundraw help (instagibbs)
 693  - #14667 Add `deriveaddresses` RPC util method (Sjors)
 694  - #15357 Don't ignore `-maxtxfee` when wallet is disabled (JBaczuk)
 695  - #15337 Fix for segfault if combinepsbt called with empty inputs (benthecarman)
 696  - #14918 RPCHelpMan: Check default values are given at compile-time (MarcoFalke)
 697  - #15383 mining: Omit uninitialized currentblockweight, currentblocktx (MarcoFalke)
 698  - #13932 Additional utility RPCs for PSBT (achow101)
 699  - #15401 Actually throw help when passed invalid number of params (MarcoFalke)
 700  - #15471 rpc/gui: Remove 'Unknown block versions being mined' warning (laanwj)
 701  - #15497 Consistent range arguments in scantxoutset/importmulti/deriveaddresses (sipa)
 702  - #15510 deriveaddresses: add range to CRPCConvertParam (Sjors)
 703  - #15582 Fix overflow bug in analyzepsbt fee: CAmount instead of int (sipa)
 704  - #13424 Consistently validate txid / blockhash length and encoding in rpc calls (Empact)
 705  - #15750 Remove the addresses field from the getaddressinfo return object (jnewbery)
 706  
 707  ### GUI
 708  - #13634 Compile `boost::signals2` only once (MarcoFalke)
 709  - #13248 Make proxy icon from statusbar clickable (mess110)
 710  - #12818 TransactionView: highlight replacement tx after fee bump (Sjors)
 711  - #13529 Use new Qt5 connect syntax (promag)
 712  - #14162 Also log and print messages or questions like bitcoind (MarcoFalke)
 713  - #14385 Avoid system harfbuzz and bz2 (theuni)
 714  - #14450 Fix QCompleter popup regression (hebasto)
 715  - #14177 Set C locale for amountWidget (hebasto)
 716  - #14374 Add `Blocksdir` to Debug window (hebasto)
 717  - #14554 Remove unused `adjustedTime` parameter (hebasto)
 718  - #14228 Enable system tray icon by default if available (hebasto)
 719  - #14608 Remove the "Pay only required fee…" checkbox (hebasto)
 720  - #14521 qt, docs: Fix `bitcoin-qt -version` output formatting (hebasto)
 721  - #13966 When private key is disabled, only show watch-only balance (ken2812221)
 722  - #14828 Remove hidden columns in coin control dialog (promag)
 723  - #14783 Fix `boost::signals2::no_slots_error` in early calls to InitWarning (promag)
 724  - #14854 Cleanup SplashScreen class (hebasto)
 725  - #14801 Use window() instead of obsolete topLevelWidget() (hebasto)
 726  - #14573 Add Window menu (promag)
 727  - #14979 Restore < Qt5.6 compatibility for addAction (jonasschnelli)
 728  - #14975 Refactoring with QString::toNSString() (hebasto)
 729  - #15000 Fix broken notificator on GNOME (hebasto)
 730  - #14375 Correct misleading "overridden options" label (hebasto)
 731  - #15007 Notificator class refactoring (hebasto)
 732  - #14784 Use `WalletModel*` instead of the wallet name as map key (promag)
 733  - #11625 Add BitcoinApplication & RPCConsole tests (ryanofsky)
 734  - #14517 Fix start with the `-min` option (hebasto)
 735  - #13216 implements concept for different disk sizes on intro (marcoagner)
 736  - #15114 Replace remaining 0 with nullptr (Empact)
 737  - #14594 Fix minimized window bug on Linux (hebasto)
 738  - #14556 Fix confirmed transaction labeled "open" (#13299) (hebasto)
 739  - #15149 Show current wallet name in window title (promag)
 740  - #15136 "Peers" tab overhaul (hebasto)
 741  - #14250 Remove redundant stopThread() and stopExecutor() signals (hebasto)
 742  - #15040 Add workaround for QProgressDialog bug on macOS (hebasto)
 743  - #15101 Add WalletController (promag)
 744  - #15178 Improve "help-console" message (hebasto)
 745  - #15210 Fix window title update (promag)
 746  - #15167 Fix wallet selector size adjustment (hebasto)
 747  - #15208 Remove macOS launch-at-startup when compiled with > macOS 10.11, fix memory mismanagement (jonasschnelli)
 748  - #15163 Correct units for "-dbcache" and "-prune" (hebasto)
 749  - #15225 Change the receive button to respond to keypool state changing (achow101)
 750  - #15280 Fix shutdown order (promag)
 751  - #15203 Fix issue #9683 "gui, wallet: random abort (segmentation fault) (dooglus)
 752  - #15091 Fix model overlay header sync (jonasschnelli)
 753  - #15153 Add Open Wallet menu (promag)
 754  - #15183 Fix `m_assumed_blockchain_size` variable value (marcoagner)
 755  - #15063 If BIP70 is disabled, attempt to fall back to BIP21 parsing (luke-jr)
 756  - #15195 Add Close Wallet action (promag)
 757  - #15462 Fix async open wallet call order (promag)
 758  - #15801 Bugfix: GUI: Options: Initialise prune setting range before loading current value, and remove upper bound limit (luke-jr)
 759  
 760  ### Build system
 761  - #13955 gitian: Bump descriptors for (0.)18 (fanquake)
 762  - #13899 Enable -Wredundant-decls where available. Remove redundant redeclarations (practicalswift)
 763  - #13665 Add RISC-V support to gitian (ken2812221)
 764  - #14062 Generate MSVC project files via python script (ken2812221)
 765  - #14037 Add README.md to linux release tarballs (hebasto)
 766  - #14183 Remove unused Qt 4 dependencies (ken2812221)
 767  - #14127 Avoid getifaddrs when unavailable (greenaddress)
 768  - #14184 Scripts and tools: increased timeout downloading (cisba)
 769  - #14204 Move `interfaces/*` to `libbitcoin_server` (laanwj)
 770  - #14208 Actually remove `ENABLE_WALLET` (jnewbery)
 771  - #14212 Remove libssl from LDADD unless GUI (MarcoFalke)
 772  - #13578 Upgrade zeromq to 4.2.5 and avoid deprecated zeromq API functions (mruddy)
 773  - #14281 lcov: filter /usr/lib/ from coverage reports (MarcoFalke)
 774  - #14325 gitian: Use versioned unsigned tarballs instead of generically named ones (achow101)
 775  - #14253 During 'make clean', remove some files that are currently missed (murrayn)
 776  - #14455 Unbreak `make clean` (jamesob)
 777  - #14495 Warn (don't fail!) on spelling errors (practicalswift)
 778  - #14496 Pin to specific versions of Python packages we install from PyPI in Travis (practicalswift)
 779  - #14568 Fix Qt link order for Windows build (ken2812221)
 780  - #14252 Run functional tests and benchmarks under the undefined behaviour sanitizer (UBSan) (practicalswift)
 781  - #14612 Include full version number in released file names (achow101)
 782  - #14840 Remove duplicate libconsensus linking in test make (AmirAbrams)
 783  - #14564 Adjust configure so that only BIP70 is disabled when protobuf is missing instead of the GUI (jameshilliard)
 784  - #14883 Add `--retry 5` to curl opts in `install_db4.sh` (qubenix)
 785  - #14701 Add `CLIENT_VERSION_BUILD` to CFBundleGetInfoString (fanquake)
 786  - #14849 Qt 5.9.7 (fanquake)
 787  - #15020 Add names to Travis jobs (gkrizek)
 788  - #15047 Allow to configure --with-sanitizers=fuzzer (MarcoFalke)
 789  - #15154 Configure: bitcoin-tx doesn't need libevent, so don't pull it in (luke-jr)
 790  - #15175 Drop macports support (Empact)
 791  - #15308 Restore compatibility with older boost (Empact)
 792  - #15407 msvc: Fix silent merge conflict between #13926 and #14372 part II (ken2812221)
 793  - #15388 Makefile.am: add rule for src/bitcoin-wallet (Sjors)
 794  - #15393 Bump minimum Qt version to 5.5.1 (Sjors)
 795  - #15285 Prefer Python 3.4 even if newer versions are present on the system (Sjors)
 796  - #15398 msvc: Add rapidcheck property tests (ken2812221)
 797  - #15431 msvc: scripted-diff: Remove NDEBUG pre-define in project file (ken2812221)
 798  - #15549 gitian: Improve error handling (laanwj)
 799  - #15548 use full version string in setup.exe (MarcoFalke)
 800  - #11526 Visual Studio build configuration for Bitcoin Core (sipsorcery)
 801  - #15110 build\_msvc: Fix the build problem in `libbitcoin_server` (Mr-Leshiy)
 802  - #14372 msvc: build secp256k1 and leveldb locally (ken2812221)
 803  - #15325 msvc: Fix silent merge conflict between #13926 and #14372 (ken2812221)
 804  - #15391 Add compile time verification of assumptions we're currently making implicitly/tacitly (practicalswift)
 805  - #15503 msvc: Use a single file to specify the include path (ken2812221)
 806  - #13765 contrib: Add gitian build support for github pull request (ken2812221)
 807  - #15809 gitignore: plist and dat (jamesob)
 808  
 809  ### Tests and QA
 810  - #15405 appveyor: Clean cache when build configuration changes (Sjors)
 811  - #13953 Fix deprecation in bitcoin-util-test.py (isghe)
 812  - #13963 Replace usage of tostring() with tobytes() (dongcarl)
 813  - #13964 ci: Add appveyor ci (ken2812221)
 814  - #13997 appveyor: fetch the latest port data (ken2812221)
 815  - #13707 Add usage note to check-rpc-mappings.py (masonicboom)
 816  - #14036 travis: Run unit tests --with-sanitizers=undefined (MarcoFalke)
 817  - #13861 Add testing of `value_ret` for SelectCoinsBnB (Empact)
 818  - #13863 travis: Move script sections to files in `.travis/` subject to shellcheck (scravy)
 819  - #14081 travis: Fix missing differentiation between unit and functional tests (scravy)
 820  - #14042 travis: Add cxxflags=-wno-psabi at arm job (ken2812221)
 821  - #14051 Make `combine_logs.py` handle multi-line logs (jnewbery)
 822  - #14093 Fix accidental trunction from int to bool (practicalswift)
 823  - #14108 Add missing locking annotations and locks (`g_cs_orphans`) (practicalswift)
 824  - #14088 Don't assert(…) with side effects (practicalswift)
 825  - #14086 appveyor: Use clcache to speed up build (ken2812221)
 826  - #13954 Warn (don't fail!) on spelling errors. Fix typos reported by codespell (practicalswift)
 827  - #12775 Integration of property based testing into Bitcoin Core (Christewart)
 828  - #14119 Read reject reasons from debug log, not P2P messages (MarcoFalke)
 829  - #14189 Fix silent merge conflict in `wallet_importmulti` (MarcoFalke)
 830  - #13419 Speed up `knapsack_solver_test` by not recreating wallet 100 times (lucash-dev)
 831  - #14199 Remove redundant BIP174 test from `rpc_psbt.json` (araspitzu)
 832  - #14179 Fixups to "Run all tests even if wallet is not compiled" (MarcoFalke)
 833  - #14225 Reorder tests and move most of extended tests up to normal tests (ken2812221)
 834  - #14236 `generate` --> `generatetoaddress` change to allow tests run without wallet (sanket1729)
 835  - #14287 Use MakeUnique to construct objects owned by `unique_ptrs` (practicalswift)
 836  - #14007 Run functional test on Windows and enable it on Appveyor (ken2812221)
 837  - #14275 Write the notification message to different files to avoid race condition in `feature_notifications.py` (ken2812221)
 838  - #14306 appveyor: Move AppVeyor YAML to dot-file-style YAML (MitchellCash)
 839  - #14305 Enforce critical class instance attributes in functional tests, fix segwit test specificity (JustinTArthur)
 840  - #12246 Bugfix: Only run bitcoin-tx tests when bitcoin-tx is enabled (luke-jr)
 841  - #14316 Exclude all tests with difference parameters in `--exclude` list (ken2812221)
 842  - #14381 Add missing call to `skip_if_no_cli()` (practicalswift)
 843  - #14389 travis: Set codespell version to avoid breakage (MarcoFalke)
 844  - #14398 Don't access out of bounds array index: array[sizeof(array)] (Empact)
 845  - #14419 Remove `rpc_zmq.py` (jnewbery)
 846  - #14241 appveyor: Script improvement (ken2812221)
 847  - #14413 Allow closed RPC handler in `assert_start_raises_init_error` (ken2812221)
 848  - #14324 Run more tests with wallet disabled (MarcoFalke)
 849  - #13649 Allow arguments to be forwarded to flake8 in lint-python.sh (jamesob)
 850  - #14465 Stop node before removing the notification file (ken2812221)
 851  - #14460 Improve 'CAmount' tests (hebasto)
 852  - #14456 forward timeouts properly in `send_blocks_and_test` (jamesob)
 853  - #14527 Revert "Make qt wallet test compatible with qt4" (MarcoFalke)
 854  - #14504 Show the progress of functional tests (isghe)
 855  - #14559 appveyor: Enable multiwallet tests (ken2812221)
 856  - #13515 travis: Enable qt for all jobs (ken2812221)
 857  - #14571 Test that nodes respond to `getdata` with `notfound` (MarcoFalke)
 858  - #14569 Print dots by default in functional tests (ken2812221)
 859  - #14631 Move deterministic address import to `setup_nodes` (jnewbery)
 860  - #14630 test: Remove travis specific code (MarcoFalke)
 861  - #14528 travis: Compile once on xenial (MarcoFalke)
 862  - #14092 Dry run `bench_bitcoin` as part `make check` to allow for quick identification of assertion/sanitizer failures in benchmarking code (practicalswift)
 863  - #14664 `example_test.py`: fixup coinbase height argument, derive number clearly (instagibbs)
 864  - #14522 Add invalid P2P message tests (jamesob)
 865  - #14619 Fix value display name in `test_runner` help text (merland)
 866  - #14672 Send fewer spam messages in `p2p_invalid_messages` (jamesob)
 867  - #14673 travis: Fail the ubsan travis build in case of newly introduced ubsan errors (practicalswift)
 868  - #14665 appveyor: Script improvement part II (ken2812221)
 869  - #14365 Add Python dead code linter (vulture) to Travis (practicalswift)
 870  - #14693 `test_node`: `get_mem_rss` fixups (MarcoFalke)
 871  - #14714 util.h: explicitly include required QString header (1Il1)
 872  - #14705 travis: Avoid timeout on verify-commits check (MarcoFalke)
 873  - #14770 travis: Do not specify sudo in `.travis` (scravy)
 874  - #14719 Check specific reject reasons in `feature_block` (MarcoFalke)
 875  - #14771 Add `BOOST_REQUIRE` to getters returning optional (MarcoFalke)
 876  - #14777 Add regtest for JSON-RPC batch calls (domob1812)
 877  - #14764 travis: Run thread sanitizer on unit tests (MarcoFalke)
 878  - #14400 Add Benchmark to test input de-duplication worst case (JeremyRubin)
 879  - #14812 Fix `p2p_invalid_messages` on macOS (jamesob)
 880  - #14813 Add `wallet_encryption` error tests (MarcoFalke)
 881  - #14820 Fix `descriptor_tests` not checking ToString output of public descriptors (ryanofsky)
 882  - #14794 Add AddressSanitizer (ASan) Travis build (practicalswift)
 883  - #14819 Bugfix: `test/functional/mempool_accept`: Ensure oversize transaction is actually oversize (luke-jr)
 884  - #14822 bench: Destroy wallet txs instead of leaking their memory (MarcoFalke)
 885  - #14683 Better `combine_logs.py` behavior (jamesob)
 886  - #14231 travis: Save cache even when build or test fail (ken2812221)
 887  - #14816 Add CScriptNum decode python implementation in functional suite (instagibbs)
 888  - #14861 Modify `rpc_bind` to conform to #14532 behaviour (dongcarl)
 889  - #14864 Run scripted-diff in subshell (dongcarl)
 890  - #14795 Allow `test_runner` command line to receive parameters for each test (marcoagner)
 891  - #14788 Possible fix the permission error when the tests open the cookie file (ken2812221)
 892  - #14857 `wallet_keypool_topup.py`: Test for all keypool address types (instagibbs)
 893  - #14886 Refactor importmulti tests (jnewbery)
 894  - #14908 Removed implicit CTransaction constructor calls from tests and benchmarks (lucash-dev)
 895  - #14903 Handle ImportError explicitly, improve comparisons against None (daniel-s-ingram)
 896  - #14884 travis: Enforce python 3.4 support through linter (Sjors)
 897  - #14940 Add test for truncated pushdata script (MarcoFalke)
 898  - #14926 consensus: Check that final transactions are valid (MarcoFalke)
 899  - #14937 travis: Fix travis would always be green even if it fail (ken2812221)
 900  - #14953 Make `g_insecure_rand_ctx` `thread_local` (MarcoFalke)
 901  - #14931 mempool: Verify prioritization is dumped correctly (MarcoFalke)
 902  - #14935 Test for expected return values when calling functions returning a success code (practicalswift)
 903  - #14969 Fix `cuckoocache_tests` TSAN failure introduced in 14935 (practicalswift)
 904  - #14964 Fix race in `mempool_accept` (MarcoFalke)
 905  - #14829 travis: Enable functional tests in the threadsanitizer (tsan) build job (practicalswift)
 906  - #14985 Remove `thread_local` from `test_bitcoin` (MarcoFalke)
 907  - #15005 Bump timeout to run tests in travis thread sanitizer (MarcoFalke)
 908  - #15013 Avoid race in `p2p_timeouts` (MarcoFalke)
 909  - #14960 lint/format-strings: Correctly exclude escaped percent symbols (luke-jr)
 910  - #14930 pruning: Check that verifychain can be called when pruned (MarcoFalke)
 911  - #15022 Upgrade Travis OS to Xenial (gkrizek)
 912  - #14738 Fix running `wallet_listtransactions.py` individually through `test_runner.py` (kristapsk)
 913  - #15026 Rename `rpc_timewait` to `rpc_timeout` (MarcoFalke)
 914  - #15069 Fix `rpc_net.py` `pong` race condition (Empact)
 915  - #14790 Allow running `rpc_bind.py` --nonloopback test without IPv6 (kristapsk)
 916  - #14457 add invalid tx templates for use in functional tests (jamesob)
 917  - #14855 Correct ineffectual WithOrVersion from `transactions_tests` (Empact)
 918  - #15099 Use `std::vector` API for construction of test data (domob1812)
 919  - #15102 Run `invalid_txs.InputMissing` test in `feature_block` (MarcoFalke)
 920  - #15059 Add basic test for BIP34 (MarcoFalke)
 921  - #15108 Tidy up `wallet_importmulti.py` (amitiuttarwar)
 922  - #15164 Ignore shellcheck warning SC2236 (promag)
 923  - #15170 refactor/lint: Add ignored shellcheck suggestions to an array (koalaman)
 924  - #14958 Remove race between connecting and shutdown on separate connections (promag)
 925  - #15166 Pin shellcheck version (practicalswift)
 926  - #15196 Update all `subprocess.check_output` functions to be Python 3.4 compatible (gkrizek)
 927  - #15043 Build fuzz targets into seperate executables (MarcoFalke)
 928  - #15276 travis: Compile once on trusty (MarcoFalke)
 929  - #15246 Add tests for invalid message headers (MarcoFalke)
 930  - #15301 When testing with --usecli, unify RPC arg to cli arg conversion and handle dicts and lists (achow101)
 931  - #15247 Use wallet to retrieve raw transactions (MarcoFalke)
 932  - #15303 travis: Remove unused `functional_tests_config` (MarcoFalke)
 933  - #15330 Fix race in `p2p_invalid_messages` (MarcoFalke)
 934  - #15324 Make bloom tests deterministic (MarcoFalke)
 935  - #15328 travis: Revert "run extended tests once daily" (MarcoFalke)
 936  - #15327 Make test `updatecoins_simulation_test` deterministic (practicalswift)
 937  - #14519 add utility to easily profile node performance with perf (jamesob)
 938  - #15349 travis: Only exit early if compilation took longer than 30 min (MarcoFalke)
 939  - #15350 Drop RPC connection if --usecli (promag)
 940  - #15370 test: Remove unused --force option (MarcoFalke)
 941  - #14543 minor `p2p_sendheaders` fix of height in coinbase (instagibbs)
 942  - #13787 Test for Windows encoding issue (ken2812221)
 943  - #15378 Added missing tests for RPC wallet errors (benthecarman)
 944  - #15238 remove some magic mining constants in functional tests (instagibbs)
 945  - #15411 travis: Combine --disable-bip70 into existing job (MarcoFalke)
 946  - #15295 fuzz: Add `test/fuzz/test_runner.py` and run it in travis (MarcoFalke)
 947  - #15413 Add missing `cs_main` locks required when accessing pcoinsdbview, pcoinsTip or pblocktree (practicalswift)
 948  - #15399 fuzz: Script validation flags (MarcoFalke)
 949  - #15410 txindex: interrupt threadGroup before calling destructor (MarcoFalke)
 950  - #15397 Remove manual byte editing in `wallet_tx_clone` func test (instagibbs)
 951  - #15415 functional: allow custom cwd, use tmpdir as default (Sjors)
 952  - #15404 Remove `-txindex` to start nodes (amitiuttarwar)
 953  - #15439 remove `byte.hex()` to keep compatibility (AkioNak)
 954  - #15419 Always refresh cache to be out of ibd (MarcoFalke)
 955  - #15507 Bump timeout on tests that timeout on windows (MarcoFalke)
 956  - #15506 appveyor: fix cache issue and reduce dependencies build time (ken2812221)
 957  - #15485 add `rpc_misc.py`, mv test getmemoryinfo, add test mallocinfo (adamjonas)
 958  - #15321 Add `cs_main` lock annotations for mapBlockIndex (MarcoFalke)
 959  - #14128 lint: Make sure we read the command line inputs using UTF-8 decoding in python (ken2812221)
 960  - #14115 lint: Make all linters work under the default macos dev environment (build-osx.md) (practicalswift)
 961  - #15219 lint: Enable python linters via an array (Empact)
 962  
 963  ### Platform support
 964  - #13866 utils: Use `_wfopen` and `_wfreopen` on windows (ken2812221)
 965  - #13886 utils: Run commands using UTF-8 string on windows (ken2812221)
 966  - #14192 utils: Convert `fs::filesystem_error` messages from local multibyte to UTF-8 on windows (ken2812221)
 967  - #13877 utils: Make fs::path::string() always return UTF-8 string on windows (ken2812221)
 968  - #13883 utils: Convert windows args to UTF-8 string (ken2812221)
 969  - #13878 utils: Add fstream wrapper to allow to pass unicode filename on windows (ken2812221)
 970  - #14426 utils: Fix broken windows filelock (ken2812221)
 971  - #14686 Fix windows build error if `--disable-bip70` (ken2812221)
 972  - #14922 windows: Set `_WIN32_WINNT` to 0x0601 (Windows 7) (ken2812221)
 973  - #13888 Call unicode API on Windows (ken2812221)
 974  - #15468 Use `fsbridge::ifstream` to fix Windows path issue (ken2812221)
 975  - #13734 Drop `boost::scoped_array` and use `wchar_t` API explicitly on Windows (ken2812221)
 976  - #13884 Enable bdb unicode support for Windows (ken2812221)
 977  
 978  ### Miscellaneous
 979  - #13935 contrib: Adjust output to current test format (AkioNak)
 980  - #14097 validation: Log FormatStateMessage on ConnectBlock error in ConnectTip (MarcoFalke)
 981  - #13724 contrib: Support ARM and RISC-V symbol check (ken2812221)
 982  - #13159 Don't close old debug log file handle prematurely when trying to re-open (on SIGHUP) (practicalswift)
 983  - #14186 bitcoin-cli: don't translate command line options (HashUnlimited)
 984  - #14057 logging: Only log `using config file path_to_bitcoin.conf` message on startup if conf file exists (leishman)
 985  - #14164 Update univalue subtree (MarcoFalke)
 986  - #14272 init: Remove deprecated args from hidden args (MarcoFalke)
 987  - #14494 Error if # is used in rpcpassword in conf (MeshCollider)
 988  - #14742 Properly generate salt in rpcauth.py (dongcarl)
 989  - #14708 Warn unrecognised sections in the config file (AkioNak)
 990  - #14756 Improve rpcauth.py by using argparse and getpass modules (promag)
 991  - #14785 scripts: Fix detection of copyright holders (cornelius)
 992  - #14831 scripts: Use `#!/usr/bin/env bash` instead of `#!/bin/bash` (vim88)
 993  - #14869 Scripts: Add trusted key for samuel dobson (laanwj)
 994  - #14809 Tools: improve verify-commits.py script (jlopp)
 995  - #14624 Some simple improvements to the RNG code (sipa)
 996  - #14947 scripts: Remove python 2 import workarounds (practicalswift)
 997  - #15087 Error if rpcpassword contains hash in conf sections (MeshCollider)
 998  - #14433 Add checksum in gitian build scripts for ossl (TheCharlatan)
 999  - #15165 contrib: Allow use of github api authentication in github-merge (laanwj)
1000  - #14409 utils and libraries: Make 'blocksdir' always net specific (hebasto)
1001  - #14839 threads: Fix unitialized members in `sched_param` (fanquake)
1002  - #14955 Switch all RNG code to the built-in PRNG (sipa)
1003  - #15258 Scripts and tools: Fix `devtools/copyright_header.py` to always honor exclusions (Empact)
1004  - #12255 Update bitcoin.service to conform to init.md (dongcarl)
1005  - #15266 memory: Construct globals on first use (MarcoFalke)
1006  - #15347 Fix build after pr 15266 merged (hebasto)
1007  - #15351 Update linearize-hashes.py (OverlordQ)
1008  - #15358 util: Add setuphelpoptions() (MarcoFalke)
1009  - #15216 Scripts and tools: Replace script name with a special parameter (hebasto)
1010  - #15250 Use RdSeed when available, and reduce RdRand load (sipa)
1011  - #15278 Improve PID file error handling (hebasto)
1012  - #15270 Pull leveldb subtree (MarcoFalke)
1013  - #15456 Enable PID file creation on WIN (riordant)
1014  - #12783 macOS: disable AppNap during sync (krab)
1015  - #13910 Log progress while verifying blocks at level 4 (domob1812)
1016  - #15124 Fail AppInitMain if either disk space check fails (Empact)
1017  - #15117 Fix invalid memory write in case of failing mmap(…) in PosixLockedPageAllocator::AllocateLocked (practicalswift)
1018  - #14357 streams: Fix broken `streams_vector_reader` test. Remove unused `seek(size_t)`
1019  - #11640 Make `LOCK`, `LOCK2`, `TRY_LOCK` work with CWaitableCriticalSection (ryanofsky)
1020  - #14074 Use `std::unordered_set` instead of `set` in blockfilter interface (jimpo)
1021  - #15275 Add gitian PGP key for hebasto (hebasto)
1022  
1023  ### Documentation
1024  - #14120 Notes about control port and read access to cookie (JBaczuk)
1025  - #14135 correct GetDifficulty doc after #13288 (fanquake)
1026  - #14013 Add new regtest ports in man following #10825 ports reattributions (ariard)
1027  - #14149 Remove misleading checkpoints comment in CMainParams (MarcoFalke)
1028  - #14153 Add disable-wallet section to OSX build instructions, update line in Unix instructions (bitstein)
1029  - #13662 Explain when reindex-chainstate can be used instead of reindex (Sjors)
1030  - #14207 `-help-debug` implies `-help` (laanwj)
1031  - #14213 Fix reference to lint-locale-dependence.sh (hebasto)
1032  - #14206 Document `-checklevel` levels (laanwj)
1033  - #14217 Add GitHub PR template (MarcoFalke)
1034  - #14331 doxygen: Fix member comments (MarcoFalke)
1035  - #14264 Split depends installation instructions per arch (MarcoFalke)
1036  - #14393 Add missing apt-get install (poiuty)
1037  - #14428 Fix macOS files description in qt/README.md (hebasto)
1038  - #14390 release process: RPC documentation (karel-3d)
1039  - #14472 getblocktemplate: use SegWit in example (Sjors)
1040  - #14497 Add doc/bitcoin-conf.md (hebasto)
1041  - #14526 Document lint tests (fanquake)
1042  - #14511 Remove explicit storage requirement from README.md (merland)
1043  - #14600 Clarify commit message guidelines (merland)
1044  - #14617 FreeBSD: Document Python 3 requirement for 'gmake check' (murrayn)
1045  - #14592 Add external interface consistency guarantees (MarcoFalke)
1046  - #14625 Make clear function argument case in dev notes (dongcarl)
1047  - #14515 Update OpenBSD build guide for 6.4 (fanquake)
1048  - #14436 Add comment explaining recentRejects-DoS behavior (jamesob)
1049  - #14684 conf: Remove deprecated options from docs, Other cleanup (MarcoFalke)
1050  - #14731 Improve scripted-diff developer docs (dongcarl)
1051  - #14778 A few minor formatting fixes and clarifications to descriptors.md (jnewbery)
1052  - #14448 Clarify rpcwallet flag url change (JBaczuk)
1053  - #14808 Clarify RPC rawtransaction documentation (jlopp)
1054  - #14804 Less confusing documentation for `torpassword` (fanquake)
1055  - #14848 Fix broken Gmane URL in security-check.py (cyounkins-bot)
1056  - #14882 developer-notes.md: Point out that UniValue deviates from upstream (Sjors)
1057  - #14909 Update minimum required Qt (fanquake)
1058  - #14914 Add nice table to files.md (emilengler)
1059  - #14741 Indicate `-rpcauth` option password hashing alg (dongcarl)
1060  - #14950 Add NSIS setup/install steps to windows docs (fanquake)
1061  - #13930 Better explain GetAncestor check for `m_failed_blocks` in AcceptBlockHeader (Sjors)
1062  - #14973 Improve Windows native build instructions (murrayn)
1063  - #15073 Botbot.me (IRC logs) not available anymore (anduck)
1064  - #15038 Get more info about GUI-related issue on Linux (hebasto)
1065  - #14832 Add more Doxygen information to Developer Notes (ch4ot1c)
1066  - #15128 Fix download link in doc/README.md (merland)
1067  - #15127 Clarifying testing instructions (benthecarman)
1068  - #15132 Add FreeBSD build notes link to doc/README.md (fanquake)
1069  - #15173 Explain what .python-version does (Sjors)
1070  - #15223 Add information about security to the JSON-RPC doc (harding)
1071  - #15249 Update python docs to reflect that wildcard imports are disallowed (Empact)
1072  - #15176 Get rid of badly named `doc/README_osx.md` (merland)
1073  - #15272 Correct logging return type and RPC example (fanquake)
1074  - #15244 Gdb attaching to process during tests has non-sudo solution (instagibbs)
1075  - #15332 Small updates to `getrawtransaction` description (amitiuttarwar)
1076  - #15354 Add missing `bitcoin-wallet` tool manpages (MarcoFalke)
1077  - #15343 netaddress: Make IPv4 loopback comment more descriptive (dongcarl)
1078  - #15353 Minor textual improvements in `translation_strings_policy.md` (merland)
1079  - #15426 importmulti: add missing description of keypool option (harding)
1080  - #15425 Add missing newline to listunspent help for witnessScript (harding)
1081  - #15348 Add separate productivity notes document (dongcarl)
1082  - #15416 Update FreeBSD build guide for 12.0 (fanquake)
1083  - #15222 Add info about factors that affect dependency list (merland)
1084  - #13676 Explain that mempool memory is added to `-dbcache` (Sjors)
1085  - #15273 Slight tweak to the verify-commits script directions (droark)
1086  - #15477 Remove misleading hint in getrawtransaction (MarcoFalke)
1087  - #15489 Update release process for snap package (MarcoFalke)
1088  - #15524 doc: Remove berkeleydb PPA from linux build instructions (MarcoFalke)
1089  - #15559 Correct `analyzepsbt` rpc doc (fanquake)
1090  - #15194 Add comment describing `fDisconnect` behavior (dongcarl)
1091  - #15754 getrpcinfo docs (benthecarman)
1092  - #15763 Update bips.md for 0.18.0 (sipa)
1093  - #15757 List new RPCs in psbt.md and descriptors.md (sipa)
1094  - #15765 correct bitcoinconsensus_version in shared-libraries.md (fanquake)
1095  - #15792 describe onlynet option in doc/tor.md (jonatack)
1096  - #15802 mention creating application support bitcoin folder on OSX (JimmyMow)
1097  - #15799 Clarify RPC versioning (MarcoFalke)
1098  
1099  Credits
1100  =======
1101  
1102  Thanks to everyone who directly contributed to this release:
1103  
1104  - 1Il1
1105  - 251
1106  - Aaron Clauson
1107  - Adam Jonas
1108  - Akio Nakamura
1109  - Alexander Leishman
1110  - Alexey Ivanov
1111  - Alexey Poghilenkov
1112  - Amir Abrams
1113  - Amiti Uttarwar
1114  - Andrew Chow
1115  - andrewtoth
1116  - Anthony Towns
1117  - Antoine Le Calvez
1118  - Antoine Riard
1119  - Antti Majakivi
1120  - araspitzu
1121  - Arvid Norberg
1122  - Ben Carman
1123  - Ben Woosley
1124  - benthecarman
1125  - bitcoinhodler
1126  - Carl Dong
1127  - Chakib Benziane
1128  - Chris Moore
1129  - Chris Stewart
1130  - chris-belcher
1131  - Chun Kuan Lee
1132  - Cornelius Schumacher
1133  - Cory Fields
1134  - Craig Younkins
1135  - Cristian Mircea Messel
1136  - Damian Mee
1137  - Daniel Ingram
1138  - Daniel Kraft
1139  - David A. Harding
1140  - DesWurstes
1141  - dexX7
1142  - Dimitri Deijs
1143  - Dimitris Apostolou
1144  - Douglas Roark
1145  - DrahtBot
1146  - Emanuele Cisbani
1147  - Emil Engler
1148  - Eric Scrivner
1149  - fridokus
1150  - Gal Buki
1151  - Gleb Naumenko
1152  - Glenn Willen
1153  - Graham Krizek
1154  - Gregory Maxwell
1155  - Gregory Sanders
1156  - gustavonalle
1157  - Harry Moreno
1158  - Hennadii Stepanov
1159  - Isidoro Ghezzi
1160  - Jack Mallers
1161  - James Hilliard
1162  - James O'Beirne
1163  - Jameson Lopp
1164  - Jeremy Rubin
1165  - Jesse Cohen
1166  - Jim Posen
1167  - John Newbery
1168  - Jon Layton
1169  - Jonas Schnelli
1170  - João Barbosa
1171  - Jordan Baczuk
1172  - Jorge Timón
1173  - Julian Fleischer
1174  - Justin Turner Arthur
1175  - Karel Bílek
1176  - Karl-Johan Alm
1177  - Kaz Wesley
1178  - ken2812221
1179  - Kostiantyn Stepaniuk
1180  - Kristaps Kaupe
1181  - Lawrence Nahum
1182  - Lenny Maiorani
1183  - liuyujun
1184  - lucash-dev
1185  - luciana
1186  - Luke Dashjr
1187  - marcaiaf
1188  - marcoagner
1189  - MarcoFalke
1190  - Martin Erlandsson
1191  - Marty Jones
1192  - Mason Simon
1193  - Michael Ford
1194  - Michael Goldstein
1195  - Michael Polzer
1196  - Mitchell Cash
1197  - mruddy
1198  - Murray Nesbitt
1199  - OverlordQ
1200  - Patrick Strateman
1201  - Pierre Rochard
1202  - Pieter Wuille
1203  - poiuty
1204  - practicalswift
1205  - priscoan
1206  - qubenix
1207  - riordant
1208  - Russell Yanofsky
1209  - Samuel Dobson
1210  - sanket1729
1211  - Sjors Provoost
1212  - Stephan Oeste
1213  - Steven Roose
1214  - Suhas Daftuar
1215  - TheCharlatan
1216  - Tim Ruffing
1217  - Vidar Holen
1218  - vim88
1219  - Walter
1220  - whythat
1221  - Wladimir J. van der Laan
1222  - Zain Iqbal Allarakhia
1223  
1224  As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/).