| 129 | } |
| 130 | |
| 131 | int64_t GetInputWeight(const COutPoint& outpoint) const |
| 132 | { |
| 133 | auto it = m_input_weights.find(outpoint); |
| 134 | assert(it != m_input_weights.end()); |
| 135 | return it->second; |
| 136 | } |
| 137 | |
| 138 | private: |
| 139 | std::set<COutPoint> setSelected; |
no test coverage detected