| 227 | } |
| 228 | |
| 229 | void CoinsResult::Shuffle(FastRandomContext& rng_fast) |
| 230 | { |
| 231 | for (auto& it : coins) { |
| 232 | std::shuffle(it.second.begin(), it.second.end(), rng_fast); |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | void CoinsResult::Add(OutputType type, const COutput& out) |
| 237 | { |
no test coverage detected