Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / BestBlock.java
index fce6df52153b0c6fd71f0e61fad02bde5e7a9aa8..a595ed02f62723c4b0c33d1fde8a3c4fd300b7a9 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;
 
 
 /**
@@ -18,32 +19,41 @@ public class BestBlock extends CommonBase {
                if (ptr != 0) { bindings.BestBlock_free(ptr); }
        }
 
+       long clone_ptr() {
+               long ret = bindings.BestBlock_clone_ptr(this.ptr);
+               return ret;
+       }
+
        /**
         * Creates a copy of the BestBlock
         */
        public BestBlock clone() {
                long ret = bindings.BestBlock_clone(this.ptr);
-               BestBlock ret_hu_conv = new BestBlock(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               BestBlock ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new BestBlock(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
        /**
-        * Returns the best block from the genesis of the given network.
+        * Constructs a `BestBlock` that represents the genesis block at height 0 of the given
+        * network.
         */
-       public static BestBlock constructor_from_genesis(LDKNetwork network) {
+       public static BestBlock from_genesis(org.ldk.enums.Network network) {
                long ret = bindings.BestBlock_from_genesis(network);
-               BestBlock ret_hu_conv = new BestBlock(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               BestBlock ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new BestBlock(null, ret); }
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
        /**
-        * Returns the best block as identified by the given block hash and height.
+        * Returns a `BestBlock` as identified by the given block hash and height.
         */
-       public static BestBlock constructor_new(byte[] block_hash, int height) {
-               long ret = bindings.BestBlock_new(block_hash, height);
-               BestBlock ret_hu_conv = new BestBlock(null, ret);
+       public static BestBlock of(byte[] block_hash, int height) {
+               long ret = bindings.BestBlock_new(InternalUtils.check_arr_len(block_hash, 32), height);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               BestBlock ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new BestBlock(null, ret); }
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }