Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / FundingCreated.java
index 6faf150f17f28c6633c42749eb65504a56969445..dcf21c2f33005463007564fcb7ef879442e57824 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import javax.annotation.Nullable;
 
 
 /**
@@ -64,7 +65,7 @@ public class FundingCreated extends CommonBase {
        }
 
        /**
-        * The signature of the channel initiator (funder) on the funding transaction
+        * The signature of the channel initiator (funder) on the initial commitment transaction
         */
        public byte[] get_signature() {
                byte[] ret = bindings.FundingCreated_get_signature(this.ptr);
@@ -72,7 +73,7 @@ public class FundingCreated extends CommonBase {
        }
 
        /**
-        * The signature of the channel initiator (funder) on the funding transaction
+        * The signature of the channel initiator (funder) on the initial commitment transaction
         */
        public void set_signature(byte[] val) {
                bindings.FundingCreated_set_signature(this.ptr, val);
@@ -81,8 +82,9 @@ public class FundingCreated extends CommonBase {
        /**
         * Constructs a new FundingCreated given each field
         */
-       public static FundingCreated constructor_new(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) {
+       public static FundingCreated of(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) {
                long ret = bindings.FundingCreated_new(temporary_channel_id_arg, funding_txid_arg, funding_output_index_arg, signature_arg);
+               if (ret >= 0 && ret < 1024) { return null; }
                FundingCreated ret_hu_conv = new FundingCreated(null, ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
@@ -93,6 +95,7 @@ public class FundingCreated extends CommonBase {
         */
        public FundingCreated clone() {
                long ret = bindings.FundingCreated_clone(this.ptr);
+               if (ret >= 0 && ret < 1024) { return null; }
                FundingCreated ret_hu_conv = new FundingCreated(null, ret);
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
@@ -109,8 +112,9 @@ public class FundingCreated extends CommonBase {
        /**
         * Read a FundingCreated from a byte array, created by FundingCreated_write
         */
-       public static Result_FundingCreatedDecodeErrorZ constructor_read(byte[] ser) {
+       public static Result_FundingCreatedDecodeErrorZ read(byte[] ser) {
                long ret = bindings.FundingCreated_read(ser);
+               if (ret >= 0 && ret < 1024) { return null; }
                Result_FundingCreatedDecodeErrorZ ret_hu_conv = Result_FundingCreatedDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }