Package org.ldk.enums
Enum ConfirmationTarget
- java.lang.Object
-
- java.lang.Enum<ConfirmationTarget>
-
- org.ldk.enums.ConfirmationTarget
-
- All Implemented Interfaces:
Serializable,Comparable<ConfirmationTarget>
public enum ConfirmationTarget extends Enum<ConfirmationTarget>
An enum that represents the priority at which we want a transaction to confirm used for feerate estimation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LDKConfirmationTarget_BackgroundWe are happy with a transaction confirming slowly, at least within a day or so worth of blocks.LDKConfirmationTarget_HighPriorityWe'd like a transaction to confirm in the next few blocks.LDKConfirmationTarget_MempoolMinimumWe'd like a transaction to confirm in the future, but don't want to commit most of the fees required to do so yet.LDKConfirmationTarget_NormalWe'd like a transaction to confirm without major delayed, i.e., within the next 12-24 blocks.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfirmationTargetvalueOf(String name)Returns the enum constant of this type with the specified name.static ConfirmationTarget[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LDKConfirmationTarget_MempoolMinimum
public static final ConfirmationTarget LDKConfirmationTarget_MempoolMinimum
We'd like a transaction to confirm in the future, but don't want to commit most of the fees required to do so yet. The remaining fees will come via a Child-Pays-For-Parent (CPFP) fee bump of the transaction. The feerate returned should be the absolute minimum feerate required to enter most node mempools across the network. Note that if you are not able to obtain this feerate estimate, you should likely use the furthest-out estimate allowed by your fee estimator.
-
LDKConfirmationTarget_Background
public static final ConfirmationTarget LDKConfirmationTarget_Background
We are happy with a transaction confirming slowly, at least within a day or so worth of blocks.
-
LDKConfirmationTarget_Normal
public static final ConfirmationTarget LDKConfirmationTarget_Normal
We'd like a transaction to confirm without major delayed, i.e., within the next 12-24 blocks.
-
LDKConfirmationTarget_HighPriority
public static final ConfirmationTarget LDKConfirmationTarget_HighPriority
We'd like a transaction to confirm in the next few blocks.
-
-
Method Detail
-
values
public static ConfirmationTarget[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConfirmationTarget c : ConfirmationTarget.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfirmationTarget valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-