Merge pull request #33 from TheBlueMatt/main
[ldk-java] / src / main / java / org / ldk / structs / FundingLocked.java
index 0b8188c1fcf060fc7a0aa40ac8d033f851b9674d..2208f2f4d24aad0fefcfe94b08cbbb521881a600 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;
 
 
 /**
@@ -51,8 +52,9 @@ public class FundingLocked extends CommonBase {
        /**
         * Constructs a new FundingLocked given each field
         */
-       public static FundingLocked constructor_new(byte[] channel_id_arg, byte[] next_per_commitment_point_arg) {
+       public static FundingLocked of(byte[] channel_id_arg, byte[] next_per_commitment_point_arg) {
                long ret = bindings.FundingLocked_new(channel_id_arg, next_per_commitment_point_arg);
+               if (ret < 1024) { return null; }
                FundingLocked ret_hu_conv = new FundingLocked(null, ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
@@ -63,6 +65,7 @@ public class FundingLocked extends CommonBase {
         */
        public FundingLocked clone() {
                long ret = bindings.FundingLocked_clone(this.ptr);
+               if (ret < 1024) { return null; }
                FundingLocked ret_hu_conv = new FundingLocked(null, ret);
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
@@ -79,8 +82,9 @@ public class FundingLocked extends CommonBase {
        /**
         * Read a FundingLocked from a byte array, created by FundingLocked_write
         */
-       public static Result_FundingLockedDecodeErrorZ constructor_read(byte[] ser) {
+       public static Result_FundingLockedDecodeErrorZ read(byte[] ser) {
                long ret = bindings.FundingLocked_read(ser);
+               if (ret < 1024) { return null; }
                Result_FundingLockedDecodeErrorZ ret_hu_conv = Result_FundingLockedDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }