aboutsummaryrefslogtreecommitdiff
path: root/src/validation.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* | | Compensate for memory peak at flush timePieter Wuille2017-03-301-1/+1
|/ /
* | [trivial] Fix typos in commentspracticalswift2017-03-211-1/+1
* | Merge #8665: Assert all the things!Wladimir J. van der Laan2017-03-141-2/+6
|\ \
| * | Assert ConnectBlock block and pIndex are the same blockNicolasDorier2017-02-191-1/+4
| * | ContextualCheckBlockHeader should never have pindexPrev to NULLNicolasDorier2017-02-151-1/+2
* | | Merge #9548: Remove min reasonable feeWladimir J. van der Laan2017-03-071-1/+1
|\ \ \
| * | | Remove unnecessary min fee argument in CTxMemPool constructorAlex Morcos2017-01-171-1/+1
* | | | Merge #9602: Remove coin age priority and free transactions - implementationWladimir J. van der Laan2017-03-071-35/+9
|\ \ \ \
| * | | | [cleanup] Remove coin age priority completely.Alex Morcos2017-03-031-5/+2
| * | | | [rpc] Remove priorityDelta from prioritisetransactionAlex Morcos2017-03-031-6/+4
| * | | | No longer allow "free" transactionsAlex Morcos2017-03-031-24/+3
* | | | | Define 7200 second timestamp window constantRussell Yanofsky2017-03-031-1/+1
|/ / / /
* | | | Merge #9773: Return errors from importmulti if complete rescans are not succe...Wladimir J. van der Laan2017-02-221-1/+6
|\ \ \ \
| * | | | Return errors from importmulti if complete rescans are not successfulRussell Yanofsky2017-02-171-1/+6
| | |_|/ | |/| |
* | | | Merge #9801: Removed redundant parameter from mempool.PrioritiseTransactionWladimir J. van der Laan2017-02-221-2/+2
|\ \ \ \
| * | | | Removed redundant parameter from mempool.PrioritiseTransactiongubatron2017-02-211-2/+2
* | | | | Read/write mempool.dat as a binary.Pavel Janík2017-02-201-2/+2
|/ / / /
* | | | Merge #9696: [trivial] Fix recently introduced typos in commentsMarcoFalke2017-02-181-5/+5
|\ \ \ \ | |/ / / |/| | |
| * | | [trivial] Fix recently introduced typos in commentspracticalswift2017-02-141-5/+5
| | |/ | |/|
* / | Harden against mistakes handling invalid blocksSuhas Daftuar2017-02-151-5/+11
|/ /
* | Merge #9644: [refactor] Remove using namespace <xxx> from src/MarcoFalke2017-01-301-24/+22
|\ \
| * | Refactor: Remove using namespace <xxx> from src/*.cpp.Karl-Johan Alm2017-01-271-24/+22
* | | Merge #9615: Wallet incremental feeWladimir J. van der Laan2017-01-301-2/+2
|\ \ \ | |/ / |/| |
| * | Use incrementalRelayFee for BIP 125 replacementAlex Morcos2017-01-191-2/+2
* | | Merge #9519: Exclude RBF replacement txs from fee estimationWladimir J. van der Laan2017-01-261-5/+7
|\ \ \
| * | | Exclude RBF txs from fee estimationAlex Morcos2017-01-201-5/+7
* | | | [Trivial] fix logging typo in FlushStateToDisk()John Newbery2017-01-241-1/+1
* | | | Introduce MemPoolConflictRemovalTrackerAlex Morcos2017-01-231-0/+45
* | | | mempool: add notification for added/removed entriesWladimir J. van der Laan2017-01-231-4/+4
* | | | Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempoolPieter Wuille2017-01-231-1/+1
|\ \ \ \
| * | | | [bugfix] save feeDelta instead of priorityDelta in DumpMempoolAlex Morcos2017-01-191-1/+1
| | |/ / | |/| |
* | | | Merge #9511: Don't overwrite validation state with corruption checkWladimir J. van der Laan2017-01-231-3/+4
|\ \ \ \
| * | | | Don't overwrite validation state with corruption checkAlex Morcos2017-01-101-3/+4
* | | | | Move wallet callbacks into cs_main (this effectively reverts #7946)Matt Corallo2017-01-191-9/+8
| |/ / / |/| | |
* | | | Merge #9499: Use recent-rejects, orphans, and recently-replaced txn for compa...Wladimir J. van der Laan2017-01-191-7/+11
|\ \ \ \ | |_|_|/ |/| | |
| * | | Make ATMP optionally return the CTransactionRefs it replacedMatt Corallo2017-01-091-7/+11
| |/ /
* | | Merge #9484: Introduce assumevalid setting to skip validation presumed valid ...Pieter Wuille2017-01-161-9/+26
|\ \ \
| * | | Introduce assumevalid setting to skip presumed valid scripts.Gregory Maxwell2017-01-131-9/+26
* | | | Merge #9490: Replace FindLatestBefore used by importmuti with FindEarliestAtL...Pieter Wuille2017-01-131-0/+2
|\ \ \ \
| * | | | Replace FindLatestBefore used by importmuti with FindEarliestAtLeast.Gregory Maxwell2017-01-121-0/+2
| |/ / /
* | | | Merge #9375: Relay compact block messages prior to full block connectionPieter Wuille2017-01-131-10/+28
|\ \ \ \ | |/ / / |/| | |
| * | | Add comment to describe callers to ActivateBestChainMatt Corallo2017-01-121-0/+5
| * | | Use a temp pindex to avoid a const_cast in ProcessNewBlockHeadersMatt Corallo2017-01-111-3/+5
| * | | Add a CValidationInterface::NewPoWValidBlock callbackMatt Corallo2017-01-051-0/+5
| * | | Call AcceptBlock with the block's shared_ptr instead of CBlock&Matt Corallo2017-01-041-8/+12
| * | | Make CBlockIndex*es in net_processing constMatt Corallo2017-01-041-2/+4
* | | | Merge #9472: Disentangle progress estimation from checkpoints and update itWladimir J. van der Laan2017-01-121-2/+20
|\ \ \ \ | |_|_|/ |/| | |
| * | | Shorten variable names and switch to tx/sPieter Wuille2017-01-111-3/+3
| * | | Remove SIGCHECK_VERIFICATION_FACTORPieter Wuille2017-01-041-28/+6
| * | | Move tx estimation data out of CCheckPointDataPieter Wuille2017-01-041-3/+3