| 39 | std::vector<unsigned char> ParseHex(const char* psz); |
| 40 | |
| 41 | BlockProcessor::BlockProcessor(uint32_t startingTxCount_, uint64_t startingInputCount, uint64_t startingOutputCount, uint32_t totalTxCount_, blocksci::BlockHeight maxBlockHeight_) : startingTxCount(startingTxCount_), currentTxNum(startingTxCount_), currentInputNum(startingInputCount), currentOutputNum(startingOutputCount), totalTxCount(totalTxCount_), maxBlockHeight(maxBlockHeight_) { |
| 42 | |
| 43 | } |
| 44 | |
| 45 | std::vector<unsigned char> ParseHex(const char* psz) { |
| 46 | // convert hex dump to vector |
nothing calls this directly
no outgoing calls
no test coverage detected