X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fenums%2FCreationError.ts;h=b3ce7f1e1047aaf6d3eab94b4534ef2815cdc9fa;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=8570e7ca26e145e982734f01fb98a64cf7d34c99;hpb=e30b350e325e7d517ea744578876d473839ad495;p=ldk-java diff --git a/ts/enums/CreationError.ts b/ts/enums/CreationError.ts index 8570e7ca..b3ce7f1e 100644 --- a/ts/enums/CreationError.ts +++ b/ts/enums/CreationError.ts @@ -1,8 +1,20 @@ export enum CreationError { - LDKCreationError_DescriptionTooLong, - LDKCreationError_RouteTooLong, - LDKCreationError_TimestampOutOfBounds, - LDKCreationError_ExpiryTimeOutOfBounds, + /** + * The supplied description string was longer than 639 __bytes__ (see [`Description::new(...)`](./struct.Description.html#method.new)) + */ +LDKCreationError_DescriptionTooLong, + /** + * The specified route has too many hops and can't be encoded + */ +LDKCreationError_RouteTooLong, + /** + * The unix timestamp of the supplied date is <0 or can't be represented as `SystemTime` + */ +LDKCreationError_TimestampOutOfBounds, + /** + * The supplied expiry time could cause an overflow if added to a `PositiveTimestamp` + */ +LDKCreationError_ExpiryTimeOutOfBounds, }