X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fenums%2FCreationError.cs;h=71d37306b8aa21c9c407271d6d29738e75ffa504;hb=c6777737ea14e7814b0fa7d6fe16536f31d4a82b;hp=1e1aec0ae729ea1e8b9c8f9498ba3e54d8a88ede;hpb=ee72c84d4bf9e2404e02fe20155efb502ceaee1b;p=ldk-java diff --git a/c_sharp/src/org/ldk/enums/CreationError.cs b/c_sharp/src/org/ldk/enums/CreationError.cs index 1e1aec0a..71d37306 100644 --- a/c_sharp/src/org/ldk/enums/CreationError.cs +++ b/c_sharp/src/org/ldk/enums/CreationError.cs @@ -1,9 +1,9 @@ namespace org { namespace ldk { namespace enums {/** - * Errors that may occur when constructing a new `RawInvoice` or `Invoice` + * Errors that may occur when constructing a new [`RawBolt11Invoice`] or [`Bolt11Invoice`] */ public enum CreationError { /** - * The supplied description string was longer than 639 __bytes__ (see [`Description::new(...)`](./struct.Description.html#method.new)) + * The supplied description string was longer than 639 __bytes__ (see [`Description::new`]) */ LDKCreationError_DescriptionTooLong, /** @@ -25,4 +25,10 @@ public enum CreationError { * [phantom invoices]: crate::utils::create_phantom_invoice */ LDKCreationError_MissingRouteHints, + /** + * The provided `min_final_cltv_expiry_delta` was less than [`MIN_FINAL_CLTV_EXPIRY_DELTA`]. + * + * [`MIN_FINAL_CLTV_EXPIRY_DELTA`]: lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA + */ + LDKCreationError_MinFinalCltvExpiryDeltaTooShort, }} } }