random: write rand256() in function of fillrand()

This commit is contained in:
Pieter Wuille 2024-06-08 07:41:42 -04:00
parent 0bd2bd1efb
commit 493a2e024e

View File

@ -661,9 +661,8 @@ void FastRandomContext::RandomSeed()
uint256 FastRandomContext::rand256() noexcept
{
if (requires_seed) RandomSeed();
uint256 ret;
rng.Keystream(MakeWritableByteSpan(ret));
fillrand(MakeWritableByteSpan(ret));
return ret;
}