mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
random: write rand256() in function of fillrand()
This commit is contained in:
parent
0bd2bd1efb
commit
493a2e024e
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue