]> git.bitcoin.ninja Git - ldk-java/blobdiff - src/main/java/org/ldk/structs/HTLCOutputInCommitment.java
Update CI references to LDK 0.0.124 drop stale memchr pins
[ldk-java] / src / main / java / org / ldk / structs / HTLCOutputInCommitment.java
index 7936b2a8208b5e78c303f44f3a7c1cf226ac33a5..0f5d72892a5b98c36190bb4cf6b9867fd67f1edc 100644 (file)
@@ -119,7 +119,7 @@ public class HTLCOutputInCommitment extends CommonBase {
         * below the dust limit (in which case no output appears in the commitment transaction and the
         * value is spent to additional transaction fees).
         */
-       public void set_transaction_output_index(Option_u32Z val) {
+       public void set_transaction_output_index(org.ldk.structs.Option_u32Z val) {
                bindings.HTLCOutputInCommitment_set_transaction_output_index(this.ptr, val.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(val);
@@ -128,7 +128,7 @@ public class HTLCOutputInCommitment extends CommonBase {
        /**
         * Constructs a new HTLCOutputInCommitment given each field
         */
-       public static HTLCOutputInCommitment of(boolean offered_arg, long amount_msat_arg, int cltv_expiry_arg, byte[] payment_hash_arg, Option_u32Z transaction_output_index_arg) {
+       public static HTLCOutputInCommitment of(boolean offered_arg, long amount_msat_arg, int cltv_expiry_arg, byte[] payment_hash_arg, org.ldk.structs.Option_u32Z transaction_output_index_arg) {
                long ret = bindings.HTLCOutputInCommitment_new(offered_arg, amount_msat_arg, cltv_expiry_arg, InternalUtils.check_arr_len(payment_hash_arg, 32), transaction_output_index_arg.ptr);
                Reference.reachabilityFence(offered_arg);
                Reference.reachabilityFence(amount_msat_arg);
@@ -164,8 +164,8 @@ public class HTLCOutputInCommitment extends CommonBase {
         * This ignores pointers and is_owned flags and looks at the values in fields.
         * Two objects with NULL inner values will be considered "equal" here.
         */
-       public boolean eq(HTLCOutputInCommitment b) {
-               boolean ret = bindings.HTLCOutputInCommitment_eq(this.ptr, b == null ? 0 : b.ptr);
+       public boolean eq(org.ldk.structs.HTLCOutputInCommitment b) {
+               boolean ret = bindings.HTLCOutputInCommitment_eq(this.ptr, b.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(b);
                if (this != null) { this.ptrs_to.add(b); };
@@ -176,6 +176,17 @@ public class HTLCOutputInCommitment extends CommonBase {
                if (!(o instanceof HTLCOutputInCommitment)) return false;
                return this.eq((HTLCOutputInCommitment)o);
        }
+       /**
+        * Converts HTLC's value with millisatoshi precision into [bitcoin::Amount] with satoshi precision.
+        * Typically this conversion is needed when transitioning from LN into base-layer Bitcoin,
+        * e. g. in commitment transactions.
+        */
+       public long to_bitcoin_amount() {
+               long ret = bindings.HTLCOutputInCommitment_to_bitcoin_amount(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
        /**
         * Serialize the HTLCOutputInCommitment object into a byte array which can be read by HTLCOutputInCommitment_read
         */