[C#] Run tests against release library in determinism CI run
[ldk-java] / src / main / java / org / ldk / enums / Direction.java
1 package org.ldk.enums;
2
3 /**
4  * The side of a channel that is the [`IntroductionNode`] in a [`BlindedPath`]. [BOLT 7] defines
5  * which nodes is which in the [`ChannelAnnouncement`] message.
6  * 
7  * [BOLT 7]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-channel_announcement-message
8  * [`ChannelAnnouncement`]: crate::ln::msgs::ChannelAnnouncement
9  */
10 public enum Direction {
11         /**
12          * The lesser node id when compared lexicographically in ascending order.
13          */
14         LDKDirection_NodeOne,
15         /**
16          * The greater node id when compared lexicographically in ascending order.
17          */
18         LDKDirection_NodeTwo,
19         ; static native void init();
20         static { org.ldk.impl.bindings.run_statics(); init(); }
21 }