From 3beb16cb30592c101ca16e6e650ec6c4b6dd99cb Mon Sep 17 00:00:00 2001 From: benthecarman Date: Tue, 30 Jul 2024 12:44:58 -0500 Subject: [PATCH] Re-export bech32 In the upgrade to rust-bitcoin 0.31, bech32 is no longer re-exported. This is needed for the u5 type by the NodeSigner for the sign_invoice function. This just re-exports the bech32 crate to handle this. --- lightning/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning/src/lib.rs b/lightning/src/lib.rs index 5274ea0bf30..b258c30f21f 100644 --- a/lightning/src/lib.rs +++ b/lightning/src/lib.rs @@ -62,6 +62,7 @@ compile_error!("Tests will always fail with cfg=fuzzing"); #[macro_use] extern crate alloc; pub extern crate bitcoin; +pub extern crate bech32; #[cfg(any(test, feature = "std"))] extern crate core;