[C#] Run tests against release library in determinism CI run
[ldk-java] / src / main / java / org / ldk / enums / ShortChannelIdError.java
1 package org.ldk.enums;
2
3 /**
4  * A `short_channel_id` construction error
5  */
6 public enum ShortChannelIdError {
7         /**
8          * Block height too high
9          */
10         LDKShortChannelIdError_BlockOverflow,
11         /**
12          * Tx index too high
13          */
14         LDKShortChannelIdError_TxIndexOverflow,
15         /**
16          * Vout index too high
17          */
18         LDKShortChannelIdError_VoutIndexOverflow,
19         ; static native void init();
20         static { org.ldk.impl.bindings.run_statics(); init(); }
21 }