| 212 | } |
| 213 | |
| 214 | std::vector<blocksci::Transaction> Cluster::getOutputTransactions() const { |
| 215 | auto pointers = getOutputPointers() | ranges::to_vector; |
| 216 | return blocksci::getOutputTransactions(pointers, clusterAccess->access); |
| 217 | } |
| 218 | |
| 219 | std::vector<blocksci::Transaction> Cluster::getInputTransactions() const { |
| 220 | auto pointers = getOutputPointers() | ranges::to_vector; |
nothing calls this directly
no test coverage detected