Update auto-generated bindings to 0.0.103
[ldk-java] / src / main / java / org / ldk / structs / FundingCreated.java
index 6faf150f17f28c6633c42749eb65504a56969445..0585d27a0d55c24907c2383a8bae8de2d4a61756 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,9 +82,10 @@ 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);
-               FundingCreated ret_hu_conv = new FundingCreated(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               FundingCreated ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingCreated(null, ret); }
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
@@ -93,7 +95,8 @@ public class FundingCreated extends CommonBase {
         */
        public FundingCreated clone() {
                long ret = bindings.FundingCreated_clone(this.ptr);
-               FundingCreated ret_hu_conv = new FundingCreated(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               FundingCreated ret_hu_conv = null; if (ret < 0 || ret > 4096) { 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 <= 4096) { return null; }
                Result_FundingCreatedDecodeErrorZ ret_hu_conv = Result_FundingCreatedDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }