repo_id
stringlengths
0
42
file_path
stringlengths
15
97
content
stringlengths
2
2.41M
__index_level_0__
int64
0
0
bitcoin
bitcoin/doc/build-netbsd.md
# NetBSD Build Guide Updated for NetBSD [9.2](https://netbsd.org/releases/formal-9/NetBSD-9.2.html). This guide describes how to build bitcoind, command-line utilities, and GUI on NetBSD. ## Preparation ### 1. Install Required Dependencies Install the required dependencies the usual way you [install software on Ne...
0
bitcoin
bitcoin/doc/external-signer.md
# Support for signing transactions outside of Bitcoin Core Bitcoin Core can be launched with `-signer=<cmd>` where `<cmd>` is an external tool which can sign transactions and perform other functions. For example, it can be used to communicate with a hardware wallet. ## Example usage The following example is based on...
0
bitcoin
bitcoin/doc/build-android.md
ANDROID BUILD NOTES ====================== This guide describes how to build and package the `bitcoin-qt` GUI for Android on Linux and macOS. ## Dependencies Before proceeding with an Android build one needs to get the [Android SDK](https://developer.android.com/studio) and use the "SDK Manager" tool to download th...
0
bitcoin
bitcoin/doc/init.md
Sample init scripts and service configuration for bitcoind ========================================================== Sample scripts and configuration files for systemd, Upstart and OpenRC can be found in the contrib/init folder. contrib/init/bitcoind.service: systemd service unit configuration contrib/ini...
0
bitcoin
bitcoin/doc/bips.md
BIPs that are implemented by Bitcoin Core: * [`BIP 9`](https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki): The changes allowing multiple soft-forks to be deployed in parallel have been implemented since **v0.12.1** ([PR #7575](https://github.com/bitcoin/bitcoin/pull/7575)) * [`BIP 11`](https://github.com...
0
bitcoin
bitcoin/doc/README.md
Bitcoin Core ============= Setup --------------------- Bitcoin Core is the original Bitcoin client and it builds the backbone of the network. It downloads and, by default, stores the entire history of Bitcoin transactions, which requires a few hundred gigabytes of disk space. Depending on the speed of your computer an...
0
bitcoin
bitcoin/doc/i2p.md
# I2P support in Bitcoin Core It is possible to run Bitcoin Core as an [I2P (Invisible Internet Project)](https://en.wikipedia.org/wiki/I2P) service and connect to such services. This [glossary](https://geti2p.net/en/about/glossary) may be useful to get started with I2P terminology. ## Run Bitcoin Core with an I2P r...
0
bitcoin
bitcoin/doc/shared-libraries.md
Shared Libraries ================ ## bitcoinconsensus 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. ### API The interface is defined in the C header `bitcoinconsensus.h` located in `src/script...
0
bitcoin
bitcoin/doc/translation_process.md
Translations ============ The Bitcoin-Core project has been designed to support multiple localisations. This makes adding new phrases, and completely new languages easily achievable. For managing all application translations, Bitcoin-Core makes use of the Transifex online translation management tool. ### Helping to t...
0
bitcoin
bitcoin/doc/README_doxygen.md
\mainpage notitle \section intro_sec Introduction This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin, which enables instant payments to anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate with no central authority: managing tr...
0
bitcoin
bitcoin/doc/productivity.md
Productivity Notes ================== Table of Contents ----------------- * [General](#general) * [Cache compilations with `ccache`](#cache-compilations-with-ccache) * [Disable features with `./configure`](#disable-features-with-configure) * [Make use of your threads with `make -j`](#make-use-of-your-threads...
0
bitcoin
bitcoin/doc/build-freebsd.md
# FreeBSD Build Guide **Updated for FreeBSD [12.3](https://www.freebsd.org/releases/12.3R/announce/)** This guide describes how to build bitcoind, command-line utilities, and GUI on FreeBSD. ## Preparation ### 1. Install Required Dependencies Run the following as root to install the base dependencies for building. ...
0
bitcoin
bitcoin/doc/tracing.md
# User-space, Statically Defined Tracing (USDT) for Bitcoin Core Bitcoin Core includes statically defined tracepoints to allow for more observability during development, debugging, code review, and production usage. These tracepoints make it possible to keep track of custom statistics and enable detailed monitoring of...
0
bitcoin
bitcoin/doc/files.md
# Bitcoin Core file system **Contents** - [Data directory location](#data-directory-location) - [Data directory layout](#data-directory-layout) - [Multi-wallet environment](#multi-wallet-environment) - [Berkeley DB database based wallets](#berkeley-db-database-based-wallets) - [SQLite database based wallets](...
0
bitcoin
bitcoin/doc/guix.md
# Bootstrappable Bitcoin Core Builds See [contrib/guix/README.md](../contrib/guix/README.md)
0
bitcoin
bitcoin/doc/build-unix.md
UNIX BUILD NOTES ==================== Some notes on how to build Bitcoin Core in Unix. (For BSD specific instructions, see `build-*bsd.md` in this directory.) To Build --------------------- ```bash ./autogen.sh ./configure make # use "-j N" for N parallel jobs make install # optional ``` See below for instructions ...
0
bitcoin
bitcoin/doc/fuzzing.md
# Fuzzing Bitcoin Core using libFuzzer ## Quickstart guide To quickly get started fuzzing Bitcoin Core using [libFuzzer](https://llvm.org/docs/LibFuzzer.html): ```sh $ git clone https://github.com/bitcoin/bitcoin $ cd bitcoin/ $ ./autogen.sh $ CC=clang CXX=clang++ ./configure --enable-fuzz --with-sanitizers=address,...
0
bitcoin
bitcoin/doc/REST-interface.md
Unauthenticated REST Interface ============================== The REST API can be enabled with the `-rest` option. The interface runs on the same port as the JSON-RPC interface, by default port 8332 for mainnet, port 18332 for testnet, port 38332 for signet, and port 18443 for regtest. REST Interface consistency gua...
0
bitcoin
bitcoin/doc/translation_strings_policy.md
Translation Strings Policy =========================== This document provides guidelines for internationalization of the Bitcoin Core software. How to translate? ------------------ To mark a message as translatable - In GUI source code (under `src/qt`): use `tr("...")` - In non-GUI source code (under `src`): use `...
0
bitcoin
bitcoin/doc/multisig-tutorial.md
# 1. Multisig Tutorial Currently, it is possible to create a multisig wallet using Bitcoin Core only. Although there is already a brief explanation about the multisig in the [Descriptors documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md#multisig), this tutorial proposes to use the signe...
0
bitcoin
bitcoin/doc/README_windows.txt
Bitcoin Core ============= Intro ----- Bitcoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to ch...
0
bitcoin
bitcoin/doc/p2p-bad-ports.md
When Bitcoin Core automatically opens outgoing P2P connections, it chooses a peer (address and port) from its list of potential peers. This list is populated with unchecked data gossiped over the P2P network by other peers. A malicious actor may gossip an address:port where no Bitcoin node is listening, or one where a...
0
bitcoin
bitcoin/doc/build-openbsd.md
# OpenBSD Build Guide **Updated for OpenBSD [7.3](https://www.openbsd.org/73.html)** This guide describes how to build bitcoind, command-line utilities, and GUI on OpenBSD. ## Preparation ### 1. Install Required Dependencies Run the following as root to install the base dependencies for building. ```bash pkg_add b...
0
bitcoin/doc
bitcoin/doc/man/bitcoin-util.1
.TH BITCOIN-UTIL "1" .SH NAME bitcoin-util \- manual page for bitcoin-util This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
0
bitcoin/doc
bitcoin/doc/man/bitcoin-tx.1
.TH BITCOIN-TX "1" .SH NAME bitcoin-tx \- manual page for bitcoin-tx This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
0
bitcoin/doc
bitcoin/doc/man/bitcoin-wallet.1
.TH BITCOIN-WALLET "1" .SH NAME bitcoin-wallet \- manual page for bitcoin-wallet This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
0
bitcoin/doc
bitcoin/doc/man/bitcoin-qt.1
.TH BITCOIN-QT "1" .SH NAME bitcoin-qt \- manual page for bitcoin-qt This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
0
bitcoin/doc
bitcoin/doc/man/Makefile.am
dist_man1_MANS= if BUILD_BITCOIND dist_man1_MANS+=bitcoind.1 endif if ENABLE_QT dist_man1_MANS+=bitcoin-qt.1 endif if BUILD_BITCOIN_CLI dist_man1_MANS+=bitcoin-cli.1 endif if BUILD_BITCOIN_TX dist_man1_MANS+=bitcoin-tx.1 endif if BUILD_BITCOIN_UTIL dist_man1_MANS+=bitcoin-util.1 endif if ENABLE_WALLET i...
0
bitcoin/doc
bitcoin/doc/man/bitcoin-cli.1
.TH BITCOIN-CLI "1" .SH NAME bitcoin-cli \- manual page for bitcoin-cli This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
0
bitcoin/doc
bitcoin/doc/man/bitcoind.1
.TH BITCOIND "1" .SH NAME bitcoind \- manual page for bitcoind This is a placeholder file. Please follow the instructions in \fIcontrib/devtools/README.md\fR to generate the manual pages after a release.
0
bitcoin/doc
bitcoin/doc/design/multiprocess.md
# Multiprocess Bitcoin On unix systems, the `--enable-multiprocess` build option can be passed to `./configure` to build new `bitcoin-node`, `bitcoin-wallet`, and `bitcoin-gui` executables alongside existing `bitcoind` and `bitcoin-qt` executables. `bitcoin-node` is a drop-in replacement for `bitcoind`, and `bitcoin-...
0
bitcoin/doc
bitcoin/doc/design/assumeutxo.md
# assumeutxo Assumeutxo is a feature that allows fast bootstrapping of a validating bitcoind instance. ## Loading a snapshot There is currently no canonical source for snapshots, but any downloaded snapshot will be checked against a hash that's been hardcoded in source code. Once you've obtained the snapshot, you c...
0
bitcoin/doc
bitcoin/doc/design/libraries.md
# Libraries | Name | Description | |--------------------------|-------------| | *libbitcoin_cli* | RPC client functionality used by *bitcoin-cli* executable | | *libbitcoin_common* | Home for common functionality shared by different executables and libraries. Similar to *libbitcoin_uti...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.21.2.md
0.21.2 Release Notes ==================== Bitcoin Core version 0.21.2 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.21.2/> This minor release includes various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.24.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.5.3.md
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 so...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.15.0.md
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.c...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.4.2.md
Never released or release notes were lost.
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.14.1.md
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/bitco...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.8.6.md
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 How to Up...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.14.md
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 ...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.6.0.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.9.3.md
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 Upgra...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.19.0.md
0.19.0 note ----------- Due to a last-minute issue (#17449), 0.19.0, although it was tagged, was never released. See the release notes for 0.19.0.1 instead.
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.16.3.md
Bitcoin Core version 0.16.3 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.16.3/> This is a new minor version release, with various bugfixes. Please report bugs using the issue tracker at GitHub: <https://github.com/bitcoin/bitcoin/issues> To receive security and update notifications, pleas...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.20.md
Please checkout the git integration branch from: https://github.com/bitcoin/bitcoin ... and help test. The new features that need testing are: * -nolisten : https://github.com/bitcoin/bitcoin/pull/11 * -rescan : scan block chain for missing wallet transactions * -printtoconsole : https://github.com/bitcoin/bitcoin/...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.8.2.md
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 Up...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.7.1.md
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 tarba...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.18.1.md
Bitcoin Core version 0.18.1 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.18.1/> This is a new minor version release, including new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://githu...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.4.6.md
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 wxB...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-26.0.md
26.0 Release Notes ================== Bitcoin Core version 26.0 is now available from: <https://bitcoincore.org/bin/bitcoin-core-26.0/> This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.15.md
* paytxfee switch is now per KB, so it adds the correct fee for large transactions * sending avoids using coins with less than 6 confirmations if it can * BitcoinMiner processes transactions in priority order based on age of dependencies * make sure generation doesn't start before block 74000 downloaded * bugfixes by D...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.9.2.md
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 i...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.6.1.md
Never released
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.16.2.md
Bitcoin Core version 0.16.2 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.16.2/> This is a new minor version release, with various bugfixes as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://github.com/bitcoin/bitcoin/issues> To receive security...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.19.1.md
0.19.1 Release Notes =============================== Bitcoin Core version 0.19.1 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.19.1/> This minor release includes various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitH...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.21.md
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 t...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.7.0.md
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:...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.8.3.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.18.0.md
Bitcoin Core version 0.18.0 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.18.0/> This is a new major version release, including new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://githu...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.5.2.md
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://...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.15.1.md
Bitcoin Core version *0.15.1* is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.15.1/> or <https://bitcoin.org/bin/bitcoin-core-0.15.1/> This is a new minor version release, including various bugfixes and performance improvements, as well as updated translations. Please report bugs using the i...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.4.3.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.14.0.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.20.2.md
0.20.2 Release Notes ==================== Bitcoin Core version 0.20.2 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.20.2/> This minor release includes various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-24.2.md
24.2 Release Notes ================== Bitcoin Core version 24.2 is now available from: <https://bitcoincore.org/bin/bitcoin-core-24.2/> This release includes various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://github.co...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.10.3.md
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:...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.11.2.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.9.2.1.md
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 t...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-23.2.md
23.2 Release Notes ================== Bitcoin Core version 23.2 is now available from: <https://bitcoincore.org/bin/bitcoin-core-23.2/> This release includes various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://github.co...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.13.0.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.12.1.md
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/bitco...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.13.1.md
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 ...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.12.0.md
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 ======...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.20.1.md
Never released or release notes were lost.
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.10.2.md
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/bitcoi...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-23.0.md
23.0 Release Notes ================== Bitcoin Core version 23.0 is now available from: <https://bitcoincore.org/bin/bitcoin-core-23.0/> This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.13.2.md
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/bitco...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-22.1.md
22.1 Release Notes ================== Bitcoin Core version 22.1 is now available from: <https://bitcoincore.org/bin/bitcoin-core-22.1/> This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.20.2.md
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 Bitcoi...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.18.md
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 comm...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.10.1.md
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/bitc...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.11.0.md
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 ==========...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.19.md
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. - Added some DoS controls As Gavin and I have said clearly before, the software is not at all resistant to DoS attack. This is one imp...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.10.0.md
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 ========================= ...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.11.1.md
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/bitc...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-23.1.md
23.1 Release Notes ================== Bitcoin Core version 23.1 is now available from: <https://bitcoincore.org/bin/bitcoin-core-23.1/> This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.10.4.md
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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-22.0.md
22.0 Release Notes ================== Bitcoin Core version 22.0 is now available from: <https://bitcoincore.org/bin/bitcoin-core-22.0/> This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <htt...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.19.0.1.md
Bitcoin Core version 0.19.0.1 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.19.0.1/> This release includes new features, various bug fixes and performance improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://github.com/bitcoin/bitcoin...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.5.5.md
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 th...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.16.md
Never released.
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.3.22.md
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 T...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.15.0.1.md
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 s...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.16.1.md
Bitcoin Core version 0.16.1 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.16.1/> This is a new minor version release, with various bugfixes as well as updated translations. Please report bugs using the issue tracker at GitHub: <https://github.com/bitcoin/bitcoin/issues> To receive security...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.9.1.md
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 bi...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.6.2.md
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 f...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.17.0.md
Bitcoin Core version 0.17.0 is now available from: <https://bitcoincore.org/bin/bitcoin-core-0.17.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...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.8.0.md
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/bit...
0
bitcoin/doc
bitcoin/doc/release-notes/release-notes-0.4.4.md
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 Lu...
0