From 513f3cf8a669998ae54daa7d1951c64943343335 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 28 Jul 2021 14:19:43 +0100 Subject: [PATCH] Make `Builder::build` public --- src/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builder.rs b/src/builder.rs index 5a418271..641ad8b7 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -281,7 +281,7 @@ impl Builder { /// /// This API assumes that none of the notes being spent are controlled by (threshold) /// multisignatures, and immediately constructs the bundle proof. - fn build>( + pub fn build>( mut self, mut rng: impl RngCore, ) -> Result, V>, Error> {