Iterates over Bitcoin blocks, decoding data inside Bitcoin Core's blocks directory.
Features:
* Blocks are returned in height order, it avoids following reorgs (see max_reorg
parameter)
* Blocks come with metadata like all block's previous outputs, it allows computing transactions fee or verifying scripts in the blockchain.
Running iterate example on threadripper 1950X, Testnet @ 2090k, Mainnet @ 709k. Spinning disk.
| Network | --skip--prevout
| --max-reorg
| Memory | Time |
|---------|-------------------|---------------|-------:|-------:|
| Mainnet | false | 6 | 8.3GB | 1h:15m |
| Mainnet | true | 6 | 157MB | 1h:00m |
| Testnet | false | 40 | 2.4GB | 5m:12s |
| Testnet | true | 40 | 221MB | 5m:12s |
Run examples with:
cargo run --release --example iterate
blocks*.dat
while blocks_iterator is doing one pass keeping out-order-blocks in memory (the latter is faster at the expense of higher memory usage)