| 26 | namespace blocksci { |
| 27 | |
| 28 | std::string OutputPointer::toString() const { |
| 29 | std::stringstream ss; |
| 30 | ss << "OutputPointer(tx_index_from=" << txNum << ", output_index_from=" << inoutNum << ")"; |
| 31 | return ss.str(); |
| 32 | } |
| 33 | |
| 34 | std::vector<Input> getInputs(const std::vector<OutputPointer> &pointers, DataAccess &access) { |
| 35 | std::unordered_set<InputPointer> allPointers; |