MCPcopy Create free account
hub / github.com/citp/BlockSci / BlockProcessor

Method BlockProcessor

tools/parser/block_processor.cpp:41–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39std::vector<unsigned char> ParseHex(const char* psz);
40
41BlockProcessor::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
45std::vector<unsigned char> ParseHex(const char* psz) {
46 // convert hex dump to vector

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected