| 630 | } |
| 631 | |
| 632 | FastRandomContext::FastRandomContext(const uint256& seed) noexcept : requires_seed(false), rng(MakeByteSpan(seed)) {} |
| 633 | |
| 634 | void FastRandomContext::Reseed(const uint256& seed) noexcept |
| 635 | { |
nothing calls this directly
no test coverage detected