| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove Python 2 import workarounds | practicalswift | 2018-12-13 | 1 | -1/+0 |
| | | |||||
| * | Update copyright headers to 2018 | DrahtBot | 2018-07-27 | 1 | -1/+1 |
| | | |||||
| * | Explicitly specify encoding when opening text files in Python code | practicalswift | 2018-06-12 | 1 | -2/+2 |
| | | |||||
| * | Enable W191 and W291 flake8 checks. | John Bampton | 2018-05-11 | 1 | -266/+266 |
| | | | | | | Remove trailing whitespace from Python files. Convert tabs to spaces. | ||||
| * | Minor Python cleanups to make flake8 pass with the new rules enabled | practicalswift | 2018-04-16 | 1 | -1/+0 |
| | | |||||
| * | Increment MIT Licence copyright header year on files modified in 2017 | Akira Takizawa | 2018-01-03 | 1 | -1/+1 |
| | | |||||
| * | Fix various minor linearization script issues | Douglas Roark | 2017-01-25 | 1 | -15/+21 |
| | | | | | | | | - The last-timestamp-encountered variable wasn’t being used properly. Rewrite code to properly allow for new blockchain files to be written when split by month. - Properly set a blockchain file’s access and modify times. - Add a “debug output” option to quiet certain output that might not always be desirable. - Update the README. | ||||
| * | Remove unused Python imports | practicalswift | 2017-01-13 | 1 | -6/+0 |
| | | |||||
| * | Make linearize scripts Python 3-compatible. | Doug | 2017-01-05 | 1 | -12/+16 |
| | | |||||
| * | Allow linearization scripts to support hash byte reversal | Doug | 2017-01-05 | 1 | -2/+17 |
| | | | | | Currently, the linearization scripts require input hashes to be in one endian form. Add support for byte reversal. | ||||
| * | Increment MIT Licence copyright header year on files modified in 2016 | isle2983 | 2016-12-31 | 1 | -1/+1 |
| | | | | | | | Edited via: $ contrib/devtools/copyright_header.py update . | ||||
| * | Use portable #! in python scripts (/usr/bin/env) | Matthew King | 2016-06-26 | 1 | -1/+1 |
| | | |||||
| * | Update Linearize tool to support Windows paths | Paul Georgiou | 2015-07-10 | 1 | -5/+7 |
| | | |||||
| * | contrib/linearize: Support linearization of testnet blocks | Jeff Garzik | 2015-05-20 | 1 | -2/+4 |
| | | |||||
| * | Added "Core" to copyright headers | sandakersmann | 2014-12-19 | 1 | -1/+1 |
| | | | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | ||||
| * | Remove references to X11 licence | Michael Ford | 2014-12-16 | 1 | -1/+1 |
| | | |||||
| * | Remove genesis block hash from error | Micha | 2014-12-08 | 1 | -1/+1 |
| | | |||||
| * | Make several small string fixes in linearize-data.py | Micha | 2014-12-07 | 1 | -4/+4 |
| | | | | | | | | - Add a space after the fixed string prepended to file names when input or output file changes - Clarify the error message when the genesis block is not found in the hash list (...why do we have this at all?) | ||||
| * | contrib: make linearize-data.py cope with out-of-order blocks | Wladimir J. van der Laan | 2014-10-06 | 1 | -98/+160 |
| | | | | | | | | | | | | | Make it possible to read blocks in any order. This will be required after headers-first (#4468), so should be merged before that. - Read block header. For expected blocks, continue, else skip. - For in-order blocks: copy block contents directly. Write prior out-of-order blocks if this connects a consecutive span. - For out-of-order blocks, store extents of block data for later retrieval. Cache out-of-order blocks in memory up to 100MB (configurable). | ||||
| * | Catch error when done reading files | Suhas Daftuar | 2014-09-11 | 1 | -1/+5 |
| | | |||||
| * | contrib/linearize: Add feature to set file's timestamp based on block header ↵ | Jeff Garzik | 2014-09-04 | 1 | -16/+34 |
| | | | | | time. | ||||
| * | contrib/linearize: split block files based on year-month, not just year | Jeff Garzik | 2014-08-24 | 1 | -14/+15 |
| | | |||||
| * | contrib/linearize: Guarantee that output is generated in-order | Jeff Garzik | 2014-08-24 | 1 | -0/+6 |
| | | | | | | | This was typically ensured implicitly by virtue of normal bitcoind operation. Adding an explicit check provides a stronger guarantee, and it is cheap to add. | ||||
| * | contrib/linearize: split output files based on new-timestamp-year or ↵ | Jeff Garzik | 2014-08-23 | 1 | -9/+35 |
| | | | | | max-file-size | ||||
| * | Update linearize scripts. | Jeff Garzik | 2014-08-23 | 1 | -0/+182 |
| Break into two steps: * Generate hash list * Build data file(s) from local bitcoind blocks/ directory. This supports building one large bootstrap.dat, or multiple smaller blocks/blkNNNNN.dat files. | |||||