aboutsummaryrefslogtreecommitdiff
path: root/src/validation.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | Declare single-argument (non-converting) constructors "explicit"practicalswift2017-08-161-2/+2
| |/ / / |/| | |
* | | | scripted-diff: stop using the gArgs wrappersMarko Bencun2017-08-141-15/+15
* | | | Merge #10483: scripted-diff: Use the C++11 keyword nullptr to denote the poin...Wladimir J. van der Laan2017-08-141-109/+109
|\ \ \ \
| * | | | scripted-diff: Use the C++11 keyword nullptr to denote the pointer literal in...practicalswift2017-08-071-109/+109
* | | | | Merge #11028: Avoid masking of difficulty adjustment errors by checkpointsWladimir J. van der Laan2017-08-141-27/+15
|\ \ \ \ \
| * | | | | Avoid masking of difficulty adjustment errors by checkpointsPieter Wuille2017-08-101-27/+15
* | | | | | Merge #11022: Basic keypool topupWladimir J. van der Laan2017-08-141-79/+84
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | [wallet] Don't hold cs_LastBlockFile while calling setBestChainJohn Newbery2017-08-021-79/+84
| |/ / / /
* / / / / Fix some broken init-time prints/constantsMatt Corallo2017-08-011-1/+0
|/ / / /
* | | | Merge #10758: Fix some chainstate-init-order bugs.Wladimir J. van der Laan2017-08-011-34/+67
|\ \ \ \
| * | | | Call RewindBlockIndex even if we're about to run -reindex-chainstateMatt Corallo2017-07-271-4/+13
| * | | | More user-friendly error message if UTXO DB runs ahead of block DBMatt Corallo2017-07-271-3/+14
| * | | | Fix some LoadChainTip-related init-order bugs.Matt Corallo2017-07-271-27/+40
* | | | | Merge #10854: Avoid using sizes on non-fixed-width types to derive protocol c...Wladimir J. van der Laan2017-07-261-3/+4
|\ \ \ \ \
| * | | | | Avoid using sizes on non-fixed-width types to derive protocol constants.Gregory Maxwell2017-07-171-3/+4
| |/ / / /
* | | | | Merge #10775: nCheckDepth chain height fixWladimir J. van der Laan2017-07-201-3/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | nCheckDepth chain height fixromanornr2017-07-081-3/+1
* | | | | Merge #10618: Remove confusing MAX_BLOCK_BASE_SIZE.Pieter Wuille2017-07-141-1/+1
|\ \ \ \ \
| * | | | | Remove confusing MAX_BLOCK_BASE_SIZE.Gregory Maxwell2017-07-141-1/+1
* | | | | | Merge #10557: Make check to distinguish between orphan txs and old txs more e...Pieter Wuille2017-07-141-12/+8
|\ \ \ \ \ \
| * | | | | | Make check to distinguish between orphan txs and old txs more efficient.Alex Morcos2017-06-271-12/+8
| | |_|_|/ / | |/| | | |
* | | | | | Merge #10810: missing white space in function argJonas Schnelli2017-07-131-1/+1
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | missing white space in function argLawrence Nahum2017-07-131-1/+1
* | | | | | Merge #10780: Simplify "!foo || (foo && bar)" as "!foo || bar"Pieter Wuille2017-07-121-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Simplify "!foo || (foo && bar)" as "!foo || bar"practicalswift2017-07-091-1/+1
| | |/ / / | |/| | |
* / | | | Fix subscript[0] in validation.cppJeremy Rubin2017-07-081-1/+1
|/ / / /
* | | | Merge #10193: scripted-diff: Remove #include <boost/foreach.hpp>Wladimir J. van der Laan2017-07-041-1/+2
|\ \ \ \
| * | | | scripted-diff: Remove BOOST_REVERSE_FOREACHJorge Timón2017-06-221-1/+1
| * | | | Introduce src/reverse_iterator.hpp and include it...Jorge Timón2017-06-221-0/+1
* | | | | Merge #10192: Cache full script execution results in addition to signaturesWladimir J. van der Laan2017-06-291-39/+156
|\ \ \ \ \
| * | | | | Add CheckInputs() unit testsSuhas Daftuar2017-06-271-2/+4
| * | | | | Better document CheckInputs parameter meaningsMatt Corallo2017-06-221-2/+9
| * | | | | Update -maxsigcachesize doc clarify init logprints for itMatt Corallo2017-06-221-2/+2
| * | | | | Add CheckInputs wrapper CCoinsViewMemPool -> non-consensus-criticalMatt Corallo2017-06-221-1/+37
| * | | | | Do not print soft-fork-script warning with -promiscuousmempoolMatt Corallo2017-06-071-2/+14
| * | | | | Cache full script execution results in addition to signaturesMatt Corallo2017-06-071-13/+55
| * | | | | Pull script verify flags calculation out of ConnectBlockMatt Corallo2017-06-071-22/+40
* | | | | | Merge #10558: Address nits from per-utxo changePieter Wuille2017-06-281-1/+2
|\ \ \ \ \ \
| * | | | | | Add belt-and-suspenders in DisconnectBlockAlex Morcos2017-06-271-1/+2
| | |_|/ / / | |/| | | |
* | | | | | Merge #10148: Use non-atomic flushing with block replayWladimir J. van der Laan2017-06-281-12/+105
|\ \ \ \ \ \
| * | | | | | Dont create pcoinsTip until after ReplayBlocks.Matt Corallo2017-06-261-3/+0
| * | | | | | Adapt memory usage estimation for flushingPieter Wuille2017-06-261-1/+1
| * | | | | | Non-atomic flushing using the blockchain as replay journalPieter Wuille2017-06-261-9/+105
| |/ / / / /
* / / / / / Use the override specifier (C++11) where we expect to be overriding the virtu...practicalswift2017-06-281-5/+5
|/ / / / /
* | | | | Merge #9544: [trivial] Add end of namespace comments. Improve consistency.Wladimir J. van der Laan2017-06-261-1/+1
|\ \ \ \ \
| * | | | | [trivial] Add end of namespace commentspracticalswift2017-05-311-1/+1
* | | | | | Merge #9176: Globals: Pass Consensus::Params through CBlockTreeDB::LoadBlockI...Wladimir J. van der Laan2017-06-251-1/+1
|\ \ \ \ \ \
| * | | | | | Globals: Pass Consensus::Params through CBlockTreeDB::LoadBlockIndexGuts()Jorge Timón2017-05-181-1/+1
* | | | | | | Merge #10633: doc: Fix various typosWladimir J. van der Laan2017-06-221-1/+1
|\ \ \ \ \ \ \
| * | | | | | | Fixed multiple typosDimitris Tsapakidis2017-06-221-1/+1
| | |_|_|/ / / | |/| | | | |