| 1013 | } |
| 1014 | |
| 1015 | std::vector<std::shared_ptr<COutput>> SelectionResult::GetShuffledInputVector() const |
| 1016 | { |
| 1017 | std::vector<std::shared_ptr<COutput>> coins(m_selected_inputs.begin(), m_selected_inputs.end()); |
| 1018 | std::shuffle(coins.begin(), coins.end(), FastRandomContext()); |
| 1019 | return coins; |
| 1020 | } |
| 1021 | |
| 1022 | bool SelectionResult::operator<(SelectionResult other) const |
| 1023 | { |