| 378 | } |
| 379 | |
| 380 | void FastRandomContext::RandomSeed() |
| 381 | { |
| 382 | uint256 seed = GetRandHash(); |
| 383 | rng.SetKey(seed.begin(), 32); |
| 384 | requires_seed = false; |
| 385 | } |
| 386 | |
| 387 | uint256 FastRandomContext::rand256() |
| 388 | { |
nothing calls this directly
no test coverage detected