| 39 | for (auto block : chain) { |
| 40 | blockCount += 1; |
| 41 | RANGES_FOR(auto tx, block) { |
| 42 | txCount += 1; |
| 43 | inputCount += tx.inputCount(); |
| 44 | outputCount += tx.outputCount(); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | std::cout << "Chain contains:" << std::endl; |
nothing calls this directly
no test coverage detected