]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Mark a few offers fields no-export as we have no mapping for them
authorMatt Corallo <git@bluematt.me>
Sat, 11 May 2024 20:05:15 +0000 (20:05 +0000)
committerMatt Corallo <git@bluematt.me>
Mon, 14 Oct 2024 19:15:11 +0000 (19:15 +0000)
lightning/src/offers/parse.rs

index 8b9f64d8b3902944f99b385e9b9fab935781b306..1d08542468d21182e5fe6fcfe056ea20a1532ea5 100644 (file)
@@ -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.