Skip to content

Commit 30c2d9d

Browse files
[tests] Remove unused function InsecureRandBytes(size_t len)
1 parent e801084 commit 30c2d9d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/test/test_bitcoin.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ static inline uint256 InsecureRand256() { return insecure_rand_ctx.rand256(); }
3333
static inline uint64_t InsecureRandBits(int bits) { return insecure_rand_ctx.randbits(bits); }
3434
static inline uint64_t InsecureRandRange(uint64_t range) { return insecure_rand_ctx.randrange(range); }
3535
static inline bool InsecureRandBool() { return insecure_rand_ctx.randbool(); }
36-
static inline std::vector<unsigned char> InsecureRandBytes(size_t len) { return insecure_rand_ctx.randbytes(len); }
3736

3837
/** Basic testing setup.
3938
* This just configures logging and chain parameters.

0 commit comments

Comments
 (0)