aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge #8049: Expose information on whether transaction relay is enabled in ↵Pieter Wuille2016-05-261-0/+1
|\ | | | | | | | | | | | | `getnetwork` 1ab1dc3 rpc: Add `relaytxes` flag to `getnetworkinfo` (Wladimir J. van der Laan) 581ddff net: Add fRelayTxes flag (Wladimir J. van der Laan)
| * net: Add fRelayTxes flagWladimir J. van der Laan2016-05-121-0/+1
| | | | | | | | | | Add a fRelayTxes to keep track of the relay transaction flag we send to other peers.
* | Merge #8015: CCoinsViewErrorCatcher raison-d-etreWladimir J. van der Laan2016-05-261-0/+5
|\ \ | | | | | | | | | a4d5855 CCoinsViewErrorCatcher raison-d-etre (21E14)
| * | CCoinsViewErrorCatcher raison-d-etre21E142016-05-061-0/+5
| | |
* | | Merge #8076: VerifyDB: don't check blocks that have been prunedPieter Wuille2016-05-251-2/+2
|\ \ \ | | | | | | | | | | | | bd477f4 VerifyDB: don't check blocks that have been pruned (Suhas Daftuar)
| * | | VerifyDB: don't check blocks that have been prunedSuhas Daftuar2016-05-221-2/+2
| | | |
* | | | Merge #8063: Acquire lock to check for genesis block.Pieter Wuille2016-05-251-3/+11
|\ \ \ \ | |/ / / |/| | | | | | | 46b0c3b Acquire lock to check for genesis block. (Patrick Strateman)
| * | | Acquire lock to check for genesis block.Patrick Strateman2016-05-161-3/+11
| | |/ | |/|
* | | Add -reindex-chainstate that does not rebuild block indexPieter Wuille2016-05-171-3/+5
| | |
* | | Switch reindexing to AcceptBlock in-loop and ActivateBestChain afterwardsPieter Wuille2016-05-171-10/+10
|/ /
* | Merge #8004: signal handling: fReopenDebugLog and fRequestShutdown should be ↵Wladimir J. van der Laan2016-05-121-1/+1
|\ \ | | | | | | | | | | | | | | | type sig_atomic_t 3262316 fReopenDebugLog and fRequestShutdown should be type sig_atomic_t (Chirag Davé)
| * | fReopenDebugLog and fRequestShutdown should be type sig_atomic_tChirag Davé2016-05-091-1/+1
| |/ | | | | | | | | | | | | | | This allows access as an atomic variable in the presence of async interrupts. See issue #7433 for more details fixes: #7433
* / init: Move berkeleydb version reporting to walletWladimir J. van der Laan2016-05-101-5/+0
|/ | | | | | | | | | Move the version reporting to Wallet::Verify, before starting verification of the wallet. This removes the dependency of init on a specific wallet database library. A further, trivial step towards resolving #7965.
* Merge #7868: net: Split DNS resolving functionality out of net structuresPieter Wuille2016-04-211-3/+4
|\ | | | | | | | | | | | | d39f5b4 net: disable resolving from storage structures (Cory Fields) 3675699 net: resolve outside of storage structures (Cory Fields) a98cd1f net: manually resolve dns seed sources (Cory Fields) e9fc71e net: require lookup functions to specify all arguments (Cory Fields)
| * net: resolve outside of storage structuresCory Fields2016-04-201-3/+4
| | | | | | | | | | | | | | | | Rather than allowing CNetAddr/CService/CSubNet to launch DNS queries, require that addresses are already resolved. This greatly simplifies async resolve logic, and makes it harder to accidentally leak DNS queries.
* | [ui] Move InitError, InitWarning, AmountErrMsgMarcoFalke2016-04-021-18/+0
|/
* Merge #7691: [Wallet] refactor wallet/init interactionWladimir J. van der Laan2016-04-021-81/+5
|\ | | | | | | 25340b7 [Wallet] refactor wallet/init interaction (Jonas Schnelli)
| * [Wallet] refactor wallet/init interactionJonas Schnelli2016-03-221-81/+5
| |
* | Merge #7766: rpc: Register calls where they are definedWladimir J. van der Laan2016-03-311-1/+3
|\ \ | | | | | | | | | fb8a8cf rpc: Register calls where they are defined (Wladimir J. van der Laan)
| * | rpc: Register calls where they are definedWladimir J. van der Laan2016-03-311-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split out methods to every module, apart from 'help' and 'stop' which are implemented in rpcserver.cpp itself. - This makes it easier to add or remove RPC commands - no longer everything that includes rpcserver.h has to be rebuilt when there's a change there. - Cleans up `rpc/server.h` by getting rid of the huge cluttered list of function definitions. - Removes most of the bitcoin-specific code from rpcserver.cpp and .h. Continues #7307 for the non-wallet.
* | | P2P: add maxtimeadjustment command line optionmruddy2016-03-291-0/+2
|/ /
* | Implement "feefilter" P2P message.Alex Morcos2016-03-211-0/+1
| | | | | | | | The "feefilter" p2p message is used to inform other nodes of your mempool min fee which is the feerate that any new transaction must meet to be accepted to your mempool. This will allow them to filter invs to you according to this feerate.
* | Merge #7692: Remove p2p alert systemWladimir J. van der Laan2016-03-211-3/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | cfd519e Add release note documentation (BtcDrak) 6601ce5 protocol.h/cpp: Removes NetMsgType::ALERT (Thomas Kerin) ad72104 Formatting (BtcDrak) 1b77471 Remove alert keys (BtcDrak) 01fdfef Remove `-alerts` option (BtcDrak) 9206634 Update alert notification and GUI (BtcDrak) bbb9d1d Remove p2p alert handling (BtcDrak)
| * | Remove `-alerts` optionBtcDrak2016-03-181-3/+0
| | |
* | | Merge #7708: De-neuter NODE_BLOOMWladimir J. van der Laan2016-03-211-2/+0
|\ \ \ | |/ / |/| | | | | c90036f Always disconnect old nodes which request filtered connections. (Patrick Strateman)
| * | Always disconnect old nodes which request filtered connections.Patrick Strateman2016-03-181-2/+0
| |/
* / BIP9 ImplementationPieter Wuille2016-03-151-1/+1
|/ | | | | Inspired by former implementations by Eric Lombrozo and Rusty Russell, and based on code by Jorge Timon.
* Merge #7507: Remove internal minerWladimir J. van der Laan2016-03-141-6/+0
|\ | | | | | | 8d1de43 Remove internal miner (Leviathn)
| * Remove internal minerLeviathn2016-02-101-6/+0
| | | | | | | | | | This code removes the internal miner which is only useful on Testnet. This leaves the internal miner that is useful on RegTest intact.
* | [Wallet] optimize return value of InitLoadWallet()Jonas Schnelli2016-03-141-2/+5
| |
* | [Wallet] move "load wallet phase" to CWalletJonas Schnelli2016-03-111-143/+10
| |
* | Merge #7576: [Wallet] move wallet help string creation to CWalletWladimir J. van der Laan2016-03-111-30/+1
|\ \ | | | | | | | | | 72c2651 [Wallet] move wallet help string creation to CWallet (Jonas Schnelli)
| * | [Wallet] move wallet help string creation to CWalletJonas Schnelli2016-03-051-30/+1
| | |
* | | Merge #7553: Remove vfReachable and modify IsReachable to only use vfLimited.Wladimir J. van der Laan2016-03-111-3/+4
|\ \ \ | | | | | | | | | | | | 110b62f Remove vfReachable and modify IsReachable to only use vfLimited. (Patrick Strateman)
| * | | Remove vfReachable and modify IsReachable to only use vfLimited.Patrick Strateman2016-02-171-3/+4
| |/ / | | | | | | | | | We do not know that a class of Network is reachable, only that it is not.
* / / Remove openssl info from init/log and from Qt debug windowJonas Schnelli2016-02-261-8/+0
|/ /
* | Merge #7509: Common argument defaults for NODE_BLOOM stuff and -walletWladimir J. van der Laan2016-02-161-5/+7
|\ \ | | | | | | | | | 1fb91b3 Common argument defaults for NODE_BLOOM stuff and -wallet (Luke Dashjr)
| * | Common argument defaults for NODE_BLOOM stuff and -walletLuke Dashjr2016-02-111-5/+7
| | |
* | | Merge #7520: LibreSSL doesn't define OPENSSL_VERSION, use ↵Wladimir J. van der Laan2016-02-121-1/+3
|\ \ \ | |_|/ |/| | | | | | | | | | | LIBRESSL_VERSION_TEXT instead a0a17b3 LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT instead (Pavel Janík)
| * | LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT insteadPavel Janík2016-02-121-1/+3
| |/
* | Merge #7192: Unify product name to as few places as possibleWladimir J. van der Laan2016-02-041-10/+9
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 027fdb8 When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen (Luke Dashjr) cc2095e Rewrite FormatParagraph to handle newlines within input strings correctly (Luke Dashjr) cddffaf Bugfix: Include COPYRIGHT_HOLDERS_SUBSTITUTION in Makefile substitutions so it gets passed to extract-strings correctly (Luke Dashjr) 29598e4 Move PACKAGE_URL to configure.ac (Luke Dashjr) 78ec83d splashscreen: Resize text to fit exactly (Luke Dashjr) 3cae140 Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhere (Luke Dashjr) 4d5a3df Bugfix: gitian-descriptors: Add missing python-setuptools requirement for OS X (biplist module) (Luke Dashjr) e4ab5e5 Bugfix: Correct copyright year in Mac DMG background image (Luke Dashjr) 917b1d0 Set copyright holders displayed in notices separately from the package name (Luke Dashjr) c39a6ff Travis & gitian-osx: Use depends for ds_store and mac_alias modules (Luke Dashjr) 902ccde depends: Add mac_alias to depends (Luke Dashjr) 82a2d98 depends: Add ds_store to depends (Cory Fields) de619a3 depends: Pass PYTHONPATH along to configure (Cory Fields) e611b6e macdeploy: Use rsvg-convert rather than cairosvg (Luke Dashjr) 63bcdc5 More complicated package name substitution for Mac deployment (Luke Dashjr) 1a6c67c Parameterise 2009 in translatable copyright strings (Luke Dashjr) d5f4683 Unify package name to as few places as possible without major changes (Luke Dashjr)
| * \ Merge branch 'master' into single_prodnameLuke Dashjr2016-02-031-175/+233
| |\ \
| * | | When/if the copyright line does not mention Bitcoin Core developers, add a ↵Luke Dashjr2016-02-031-5/+4
| | | | | | | | | | | | | | | | second line to copyrights in -version, About dialog, and splash screen
| * | | Set copyright holders displayed in notices separately from the package nameLuke Dashjr2015-12-221-1/+1
| | | | | | | | | | | | | | | | This helps avoid accidental removal of upstream copyright names
| * | | Parameterise 2009 in translatable copyright stringsLuke Dashjr2015-12-181-1/+1
| | | |
| * | | Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-6/+6
| | | |
* | | | Merge #7431: Rename permitrbf to mempoolreplacement and provide minimal ↵Wladimir J. van der Laan2016-02-031-2/+12
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | string-list forward compatibility (needs 0.12 backport) b922fbe Rename replacebyfee=opt-in to mempoolreplacement=fee (Luke Dashjr) 3b66e54 Simplify check for replacebyfee=opt-in (Luke Dashjr) d65dee9 Accept replacebyfee=opt-in for turning on opt-in RBF (Luke Dashjr) 77b55a0 Rename permitrbf to replacebyfee (Luke Dashjr)
| * | | Rename replacebyfee=opt-in to mempoolreplacement=feeLuke Dashjr2016-02-011-5/+5
| | | |
| * | | Simplify check for replacebyfee=opt-inLuke Dashjr2016-01-291-6/+1
| | | |
| * | | Accept replacebyfee=opt-in for turning on opt-in RBFLuke Dashjr2016-01-281-0/+15
| | | | | | | | | | | | | | | | Basic forward-compatibility with more flexible parameters like fss