Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-29 | DoS fix for mapOrphanTransactionsv0.6.0rc2 | Gavin Andresen | |
2012-02-27 | Add mruset and use it for setInventoryKnown | Pieter Wuille | |
2012-02-20 | Fix tests after 38067c18 | Pieter Wuille | |
2012-02-07 | New GetArg features: allow --, and booleans can be -foo or -nofoo | Gavin Andresen | |
2012-02-07 | Unit tests for the GetArg() methods | Gavin Andresen | |
2012-02-07 | Merge branch 'standardScriptSigs' of github.com:gavinandresen/bitcoin-git | Gavin Andresen | |
2012-01-20 | Simplify counting of P2SH sigops to match BIP 16 (thanks to Matt Corallo for ↵ | Gavin Andresen | |
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. | |||
2012-01-19 | Make transactions with extra data in their scriptSig's non-standard. | Gavin Andresen | |
2012-01-13 | Refactored ConnectInputs, so valid-transaction-checks are done before ↵ | Gavin Andresen | |
ECDSA-verifying signatures. | |||
2012-01-13 | Replace OP_EVAL (BIP 12) with Pay-to-script-hash (BIP 16). | Gavin Andresen | |
2012-01-09 | Unit tests for EC key routines | Pieter Wuille | |
This tests: * creation of keys from base58-encoded strings * extracting public keys and addresses * compressed public keys * compact signatures and key recovery | |||
2012-01-06 | Network stack refactor | Pieter Wuille | |
This introduces CNetAddr and CService, respectively wrapping an (IPv6) IP address and an IP+port combination. This functionality used to be part of CAddress, which also contains network flags and connection attempt information. These extra fields are however not always necessary. These classes, along with logic for creating connections and doing name lookups, are moved to netbase.{h,cpp}, which does not depend on headers.h. Furthermore, CNetAddr is mostly IPv6-ready, though IPv6 functionality is not yet enabled for the application itself. | |||
2012-01-03 | make sure IsMine only returns true when we own all keys | coderrr | |
2011-12-27 | Fixed OP_EVAL recursion unit test, checks for both infinite and ↵ | Gavin Andresen | |
exactly-3-deep recursion | |||
2011-12-22 | Fix broken ExtractAddress (refactored, made callers check for addresses in ↵ | Gavin Andresen | |
keystore if they care) | |||
2011-12-21 | Revert "Use standard C99 (and Qt) types for 64-bit integers" | Wladimir J. van der Laan | |
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9. | |||
2011-12-20 | Use standard C99 (and Qt) types for 64-bit integers | Luke Dashjr | |
2011-12-19 | Use block times for 'hard' OP_EVAL switchover, and refactored EvalScript | Gavin Andresen | |
so it takes a flag for how to interpret OP_EVAL. Also increased IsStandard size of scriptSigs to 500 bytes, so a 3-of-3 multisig transaction IsStandard. | |||
2011-12-19 | Interpret OP_EVAL as OP_NOP until Feb 1, 2012 | Gavin Andresen | |
2011-12-19 | OP_EVAL implementation | Gavin Andresen | |
OP_EVAL is a new opcode that evaluates an item on the stack as a script. It enables a new type of bitcoin address that needs an arbitrarily complex script to redeem. | |||
2011-12-19 | Global fixture to send output to console instead of debug.log | Gavin Andresen | |
2011-12-19 | Support 3 new multisignature IsStandard transactions | Gavin Andresen | |
Initial support for (a and b), (a or b), and 2-of-3 escrow transactions (where a, b, and c are keys). | |||
2011-12-19 | Rework unit tests so test_bitcoin.cpp does not #include them all | Gavin Andresen | |
2011-12-01 | Orphan block fill-up-memory attack prevention | Gavin Andresen | |
2011-12-01 | Moved checkpoints out of main, to prep for using them to help prevent DoS ↵ | Gavin Andresen | |
attacks | |||
2011-11-02 | Added simple critical section test cases. | Clark Gaebel | |
2011-10-05 | Fix miner_test unit test bug | Gavin Andresen | |
2011-10-05 | Merge branch 'no-cryptopp' of https://github.com/tcatm/bitcoin | Gavin Andresen | |
2011-10-03 | Declare integer constant LL | Gavin Andresen | |
2011-10-01 | remove possibility of 63 bit overflow in ParseMoney | Wladimir J. van der Laan | |
- also, add unit tests for various functions in util.cpp/util.h | |||
2011-09-30 | remove cryptopp dependency, add simple unittest for SHA256Transform() | Nils Schneider | |
2011-09-30 | Merge pull request #524 from sipa/signandverif | Gavin Andresen | |
Sign and verify message with bitcoin address | |||
2011-09-28 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
Conflicts: .gitignore (used upstream version) bitcoin-qt.pro | |||
2011-09-28 | use median filter for peer-reported reported number of blocks | Wladimir J. van der Laan | |
- fixes problem that one misconfigured or malicious node can mess up progress bar - implementation in src/util.h - testcase in src/test/util_tests.cpp | |||
2011-09-27 | Test case for base64 encode/decode | Pieter Wuille | |
2011-09-21 | Framework for banning mis-behaving peers | Gavin Andresen | |
2011-08-26 | CHECKMULTISIG unit tests. | Gavin Andresen | |
2011-08-08 | Cleanup test suite output to be more useful. | Matt Corallo | |
2011-08-08 | Add file for transaction tests. | Matt Corallo | |
2011-08-08 | Add a file for script tests | Vegard Nossum | |
2011-08-08 | Fix testing setup | Vegard Nossum | |
There were some problems with the existing testing setup: - Makefile rules for test-file compilation used CFLAGS instead of CXXFLAGS in makefile.unix | |||
2011-06-27 | Boost unit-testing framework. | Gavin Andresen | |
make -f makefile.{unix,osx,mingw} test_bitcoin to compile dumb, do-almost-nothing placeholder unit tests. |