Internal function to set g_determinstic_rng. Only accessed from tests. */
| 593 | |
| 594 | /** Internal function to set g_determinstic_rng. Only accessed from tests. */ |
| 595 | void MakeRandDeterministicDANGEROUS(const uint256& seed) noexcept |
| 596 | { |
| 597 | GetRNGState().MakeDeterministic(seed); |
| 598 | } |
| 599 | std::atomic<bool> g_used_g_prng{false}; // Only accessed from tests |
| 600 | |
| 601 | void GetRandBytes(std::span<unsigned char> bytes) noexcept |
no outgoing calls