Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-31 | Increment MIT Licence copyright header year on files modified in 2016 | isle2983 | |
Edited via: $ contrib/devtools/copyright_header.py update . | |||
2016-11-19 | Make CBlock::vtx a vector of shared_ptr<CTransaction> | Pieter Wuille | |
2016-06-22 | BIP141: Commitment structure and deployment | Pieter Wuille | |
Includes a fix by Suhas Daftuar and LongShao007 | |||
2016-01-05 | Add missing copyright headers | MarcoFalke | |
2015-11-27 | Switch blocks to a constant-space Merkle root/branch algorithm. | Pieter Wuille | |
This switches the Merkle tree logic for blocks to one that runs in constant (small) space. The old code is moved to tests, and a new test is added that for various combinations of block sizes, transaction positions to compute a branch for, and mutations: * Verifies that the old code and new code agree for the Merkle root. * Verifies that the old code and new code agree for the Merkle branch. * Verifies that the computed Merkle branch is valid. * Verifies that mutations don't change the Merkle root. * Verifies that mutations are correctly detected. | |||
2015-11-27 | Add merkle.{h,cpp}, generic merkle root/branch algorithm | Pieter Wuille | |