From daf60264d16a554f8877f28e11b5df6eab33d324 Mon Sep 17 00:00:00 2001 From: jp1ac4 <121959000+jp1ac4@users.noreply.github.com> Date: Wed, 28 Feb 2024 19:18:45 +0000 Subject: [PATCH] lib: expose random module This is motivated by the GUI needing to generate a salt and password for RPC user/password authentication to the managed bitcoind. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a58b6b30..c3a3b52e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ mod database; pub mod descriptors; #[cfg(feature = "daemon")] mod jsonrpc; -mod random; +pub mod random; pub mod signer; pub mod spend; #[cfg(test)]