From: Matt Corallo Date: Sat, 11 May 2024 20:05:15 +0000 (+0000) Subject: Mark a few offers fields no-export as we have no mapping for them X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=18f1e34fb6dc5ee8e86e0ea56f969df807b399e7;p=rust-lightning Mark a few offers fields no-export as we have no mapping for them --- diff --git a/lightning/src/offers/parse.rs b/lightning/src/offers/parse.rs index 8b9f64d8b..1d0854246 100644 --- a/lightning/src/offers/parse.rs +++ b/lightning/src/offers/parse.rs @@ -123,7 +123,8 @@ pub enum Bolt12ParseError { /// being parsed. InvalidBech32Hrp, /// The string could not be bech32 decoded. - Bech32(bech32::Error), + Bech32(/// This is not exported to bindings users as the details don't matter much + bech32::Error), /// The bech32 decoded string could not be decoded as the expected message type. Decode(DecodeError), /// The parsed message has invalid semantics.