| 689 | } |
| 690 | |
| 691 | std::vector<int> CChainParams::GetAvailableSnapshotHeights() const |
| 692 | { |
| 693 | std::vector<int> heights; |
| 694 | heights.reserve(m_assumeutxo_data.size()); |
| 695 | |
| 696 | for (const auto& data : m_assumeutxo_data) { |
| 697 | heights.emplace_back(data.height); |
| 698 | } |
| 699 | return heights; |
| 700 | } |
| 701 | |
| 702 | std::optional<ChainType> GetNetworkForMagic(const MessageStartChars& message) |
| 703 | { |
no test coverage detected