aboutsummaryrefslogtreecommitdiff
path: root/src/test/transaction_tests.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add data-driven transaction tests.Matt Corallo2012-08-201-0/+138
|
* Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddressPieter Wuille2012-05-241-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 recent refactorsPieter Wuille2012-04-171-1/+1
|
* Fix tests after 38067c18Pieter Wuille2012-02-201-1/+1
|
* Merge branch 'standardScriptSigs' of github.com:gavinandresen/bitcoin-gitGavin Andresen2012-02-071-6/+18
|\
| * Make transactions with extra data in their scriptSig's non-standard.Gavin Andresen2012-01-191-6/+18
| |
* | Simplify counting of P2SH sigops to match BIP 16 (thanks to Matt Corallo for ↵Gavin Andresen2012-01-201-2/+0
|/ | | | | | prompting this). This also removes an un-needed sigops-per-byte check when accepting transactions to the memory pool (un-needed assuming only standard transactions are being accepted). And it only counts P2SH sigops after the switchover date.
* Refactored ConnectInputs, so valid-transaction-checks are done before ↵Gavin Andresen2012-01-131-0/+85
| | | | ECDSA-verifying signatures.
* Rework unit tests so test_bitcoin.cpp does not #include them allGavin Andresen2011-12-191-2/+2
|
* Add file for transaction tests.Matt Corallo2011-08-081-0/+25