| 608 | } |
| 609 | |
| 610 | std::vector<CInputCoin> SelectionResult::GetShuffledInputVector() const |
| 611 | { |
| 612 | std::vector<CInputCoin> coins(m_selected_inputs.begin(), m_selected_inputs.end()); |
| 613 | Shuffle(coins.begin(), coins.end(), FastRandomContext()); |
| 614 | return coins; |
| 615 | } |
| 616 | |
| 617 | bool SelectionResult::operator<(SelectionResult other) const |
| 618 | { |
no test coverage detected