Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / enums / ConfirmationTarget.java
1 package org.ldk.enums;
2
3 /**
4  * An enum that represents the speed at which we want a transaction to confirm used for feerate
5  * estimation.
6  */
7 public enum ConfirmationTarget {
8         /**
9          * We are happy with this transaction confirming slowly when feerate drops some.
10          */
11         LDKConfirmationTarget_Background,
12         /**
13          * We'd like this transaction to confirm without major delay, but 12-18 blocks is fine.
14          */
15         LDKConfirmationTarget_Normal,
16         /**
17          * We'd like this transaction to confirm in the next few blocks.
18          */
19         LDKConfirmationTarget_HighPriority,
20         ; static native void init();
21         static { init(); }
22 }