aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merge #8392: Fix several node initialization issuesWladimir J. van der Laan2016-08-041-13/+33
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 9d4eb9a Do diskspace check before import thread is started (Pieter Wuille) aa59f2e Add extra message to avoid a long 'Loading banlist' (Pieter Wuille) 0fd2a33 Use a signal to continue init after genesis activation (Pieter Wuille)
| * | | | Do diskspace check before import thread is startedPieter Wuille2016-07-301-3/+3
| | | | |
| * | | | Use a signal to continue init after genesis activationPieter Wuille2016-07-301-10/+30
| |/ / /
* | | | Do not shadow previous local variablePavel Janík2016-08-021-3/+3
| | | |
* | | | Trivial: bip -> BIP in help text and commentPavel Janík2016-08-021-2/+2
| | | |
* | | | Allow changing BIP9 parameters on regtestSuhas Daftuar2016-07-291-0/+36
|/ / /
* / / Treat high-sigop transactions as larger rather than rejecting themPieter Wuille2016-07-191-1/+1
|/ /
* | Rename "block cost" to "block weight"Suhas Daftuar2016-07-181-1/+1
| |
* | mining: Improve `-blockmaxcost` help messageWladimir J. van der Laan2016-07-181-1/+1
| | | | | | | | One-word replacement to #8354.
* | Merge #8295: Mining-related fixups for 0.13.0Wladimir J. van der Laan2016-07-181-1/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | c1d61fb Add warning if -blockminsize is used. (Suhas Daftuar) 27362dd Remove -blockminsize option (Suhas Daftuar) d2e46e1 Remove addScoreTxs() (Suhas Daftuar) 6dd4bc2 Exclude witness transactions in addPackageTxs() pre-segwit activation (Suhas Daftuar) f15c2cd CreateNewBlock: add support for size-accounting to addPackageTxs (Suhas Daftuar)
| * | Add warning if -blockminsize is used.Suhas Daftuar2016-07-051-0/+3
| | |
| * | Remove -blockminsize optionSuhas Daftuar2016-06-301-1/+0
| |/
* | Merge #8273: Bump `-dbcache` default to 300MiBWladimir J. van der Laan2016-07-061-2/+2
|\ \ | | | | | | | | | | | | efd1d83 doc: Mention dbcache increase in release notes (Wladimir J. van der Laan) 32cab91 Bump `-dbcache` default to 300MiB (Wladimir J. van der Laan)
| * | Bump `-dbcache` default to 300MiBWladimir J. van der Laan2016-07-061-2/+2
| |/ | | | | | | | | | | | | Also cap the allocation for the leveldb-specific cache for the UTXO set to 8MiB. This avoids that the extra cache memory goes to the much less effective leveldb cache instead of our application-level cache.
* | Merge #8275: Remove bad chain alert partition checkWladimir J. van der Laan2016-07-061-6/+0
|\ \ | | | | | | | | | ab8be98 Remove bad chain alert partition check (BtcDrak)
| * | Remove bad chain alert partition checkBtcDrak2016-06-141-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | As per meeting 2016-03-31 https://bitcoincore.org/en/meetings/2016/03/31/#bad-chain-alerts The partition checker was producing huge number of false-positives and was disabled in 0.12.1 on the understanding it would either be fixed in 0.13 or removed entirely from master if not.
* | | Merge #8257: Do not ask a UI question from bitcoindWladimir J. van der Laan2016-06-281-1/+2
|\ \ \ | |_|/ |/| | | | | 1acf1db Do not ask a UI question from bitcoind (Pieter Wuille)
| * | Do not ask a UI question from bitcoindPieter Wuille2016-06-241-1/+2
| | |
* | | Add rewind logic to deal with post-fork software updatesPieter Wuille2016-06-221-0/+8
| | | | | | | | | | | | Includes logic for dealing with pruning by Suhas Daftuar.
* | | BIP141: Other consensus critical limits, and BIP145Pieter Wuille2016-06-221-0/+1
| | | | | | | | | | | | Includes changes by Suhas Daftuar, Luke-jr, and mruddy.
* | | BIP144: Handshake and relay (receiver side)Pieter Wuille2016-06-221-0/+12
|/ / | | | | | | | | | | Service bit logic by Nicolas Dorier. Only download blocks from witness peers after fork.
* / [doc] Add website links to about dialogMarcoFalke2016-06-161-1/+10
|/
* Introduce enum ServiceFlags for service flagsPieter Wuille2016-06-131-2/+2
|
* build: Get rid of `CLIENT_DATE`Wladimir J. van der Laan2016-06-091-1/+1
| | | | | | | Putting the build date in the executable is a practice that has no place in these days, now that deterministic building is increasingly common. Continues #7732 which did this for the GUI.
* [init] Make feefilter option debug optionMarcoFalke2016-06-071-1/+2
|
* Use std::atomic for fRequestShutdown and fReopenDebugLogPieter Wuille2016-06-011-1/+1
|
* Always require OS randomness when generating secret keysPieter Wuille2016-05-291-2/+0
|
* 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)