File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,9 @@ use crate::ser::Base32Iterable;
9191#[ allow( missing_docs) ]
9292#[ derive( PartialEq , Eq , Debug , Clone ) ]
9393pub enum Bolt11ParseError {
94- Bech32Error ( CheckedHrpstringError ) ,
94+ Bech32Error (
95+ /// This is not exported to bindings users as the details don't matter much
96+ CheckedHrpstringError ) ,
9597 ParseAmountError ( ParseIntError ) ,
9698 MalformedSignature ( bitcoin:: secp256k1:: Error ) ,
9799 BadPrefix ,
Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ pub enum Bolt12ParseError {
142142 /// being parsed.
143143 InvalidBech32Hrp ,
144144 /// The string could not be bech32 decoded.
145- Bech32 ( CheckedHrpstringError ) ,
145+ Bech32 ( /// This is not exported to bindings users as the details don't matter much
146+ CheckedHrpstringError ) ,
146147 /// The bech32 decoded string could not be decoded as the expected message type.
147148 Decode ( DecodeError ) ,
148149 /// The parsed message has invalid semantics.
You can’t perform that action at this time.
0 commit comments