| 207 | } |
| 208 | |
| 209 | std::vector<blocksci::Transaction> Cluster::getTransactions() const { |
| 210 | auto pointers = getOutputPointers() | ranges::to_vector; |
| 211 | return blocksci::getTransactions(pointers, clusterAccess->access); |
| 212 | } |
| 213 | |
| 214 | std::vector<blocksci::Transaction> Cluster::getOutputTransactions() const { |
| 215 | auto pointers = getOutputPointers() | ranges::to_vector; |
nothing calls this directly
no test coverage detected