| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add licenses for tests and test data | Wladimir J. van der Laan | 2014-03-18 | 1 | -1/+3 |
| | | | | | | | | | - Add license headers to source files (years based on commit dates) in `src/test` as well as `qa` - Add `README.md` to `src/test/data` specifying MIT license Fixes #3848 | ||||
| * | Cleanup code using forward declarations. | Brandon Dahler | 2013-11-10 | 1 | -4/+8 |
| | | | | | | | | | | Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files. | ||||
| * | CSecret/CKey -> CKey/CPubKey split/refactor | Pieter Wuille | 2013-05-30 | 1 | -2/+2 |
| | | |||||
| * | Fix signed/unsigned comparison warnings | Gavin Andresen | 2013-04-03 | 1 | -11/+11 |
| | | |||||
| * | Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress | Pieter Wuille | 2012-05-24 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | This introduces internal types: * CKeyID: reference (hash160) of a key * CScriptID: reference (hash160) of a script * CTxDestination: a boost::variant of the former two CBitcoinAddress is retrofitted to be a Base58 encoding of a CTxDestination. This allows all internal code to only use the internal types, and only have RPC and GUI depend on the base58 code. Furthermore, the header dependencies are a lot saner now. base58.h is at the top (right below rpc and gui) instead of at the bottom. For the rest: wallet -> script -> keystore -> key. Only keystore still requires a forward declaration of CScript. Solving that would require splitting script into two layers. | ||||
| * | Fix tests after 38067c18 | Pieter Wuille | 2012-02-20 | 1 | -1/+1 |
| | | |||||
| * | Replace OP_EVAL (BIP 12) with Pay-to-script-hash (BIP 16). | Gavin Andresen | 2012-01-13 | 1 | -0/+60 |