From 6117553c9d7652aaa050ac931447ccdefa5f658f Mon Sep 17 00:00:00 2001 From: Jack Lloyd <jack@randombit.net> Date: Tue, 7 Nov 2023 14:08:18 -0500 Subject: [PATCH] Remove abort call accidentally left over from debugging --- src/lib/rng/rng.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/rng/rng.cpp b/src/lib/rng/rng.cpp index 4147f46e2b1..f196b8a1789 100644 --- a/src/lib/rng/rng.cpp +++ b/src/lib/rng/rng.cpp @@ -63,7 +63,6 @@ void RandomNumberGenerator::reseed_from_rng(RandomNumberGenerator& rng, size_t p void Null_RNG::fill_bytes_with_input(std::span<uint8_t> output, std::span<const uint8_t> /* ignored */) { // throw if caller tries to obtain random bytes if(!output.empty()) { - abort(); throw PRNG_Unseeded("Null_RNG called"); } }