mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 23:09:44 -04:00
random: use BasicByte concept in randbytes
This commit is contained in:
parent
27cefc7fd6
commit
40dd86fc3b
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Generate random bytes. */
|
/** Generate random bytes. */
|
||||||
template <typename B = unsigned char>
|
template <BasicByte B = unsigned char>
|
||||||
std::vector<B> randbytes(size_t len) noexcept
|
std::vector<B> randbytes(size_t len) noexcept
|
||||||
{
|
{
|
||||||
std::vector<B> ret(len);
|
std::vector<B> ret(len);
|
||||||
|
|
Loading…
Add table
Reference in a new issue