Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-15 | Move CBlockLocator to core.h | Pieter Wuille | |
As CBlockLocator is a P2P data structure, and independent from the validation logic, it can be moved to core. | |||
2013-09-24 | Skip unspendable outputs in consistency check | Pieter Wuille | |
2013-07-10 | Prune provably-unspendable outputs | Pieter Wuille | |
2013-06-25 | Move core implementations to core.cpp | Pieter Wuille | |
2013-06-23 | Moved CBlock from main.h to core.h | Eric Lombrozo | |
2013-06-11 | fix comment about dust logic | Cozz Lovan | |
2013-06-05 | Moved UpdateTime out of CBlockHeader and moved CBlockHeader into core. | Eric Lombrozo | |
2013-06-05 | Moved CCoins, CTxOutCompressor, CTxInUndo, and CTxUndo to core. | Eric Lombrozo | |
2013-06-05 | Removed AcceptToMemoryPool method from CTransaction. This method belongs to ↵ | Eric Lombrozo | |
the mempool instance. Removed AreInputsStandard from CTransaction, made it a regular function in main. Moved CTransaction::GetOutputFor to CCoinsViewCache. Moved GetLegacySigOpCount and GetP2SHSigOpCount out of CTransaction into regular functions in main. Moved GetValueIn and HaveInputs from CTransaction into CCoinsViewCache. Moved AllowFree, ClientCheckInputs, CheckInputs, UpdateCoins, and CheckTransaction out of CTransaction and into main. Moved IsStandard and IsFinal out of CTransaction and put them in main as IsStandardTx and IsFinalTx. Moved GetValueOut out of CTransaction into main. Moved CTxIn, CTxOut, and CTransaction into core. Added minimum fee parameter to CTxOut::IsDust() temporarily until CTransaction is moved to core.h so that CTxOut needn't know about CTransaction. | |||
2013-06-05 | Moved CInPoint to core. Removed GetMinFee from CTransaction and made it a ↵ | Eric Lombrozo | |
regular function in main. | |||
2013-06-05 | Created core.h/core.cpp, added to makefiles. Started moving core structures ↵ | Eric Lombrozo | |
from main to core beginning with COutPoint. |