[Java] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / src / main / java / org / ldk / structs / BestBlock.java
index fa485b60437407f3296492ff8570634f45b92b03..f7f60859b92da1891b5d044f2783d90e5b8a7db6 100644 (file)
@@ -20,6 +20,55 @@ public class BestBlock extends CommonBase {
                if (ptr != 0) { bindings.BestBlock_free(ptr); }
        }
 
+       /**
+        * The block's hash
+        */
+       public byte[] get_block_hash() {
+               byte[] ret = bindings.BestBlock_get_block_hash(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       /**
+        * The block's hash
+        */
+       public void set_block_hash(byte[] val) {
+               bindings.BestBlock_set_block_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
+       }
+
+       /**
+        * The height at which the block was confirmed.
+        */
+       public int get_height() {
+               int ret = bindings.BestBlock_get_height(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       /**
+        * The height at which the block was confirmed.
+        */
+       public void set_height(int val) {
+               bindings.BestBlock_set_height(this.ptr, val);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
+       }
+
+       /**
+        * Constructs a new BestBlock given each field
+        */
+       public static BestBlock of(byte[] block_hash_arg, int height_arg) {
+               long ret = bindings.BestBlock_new(InternalUtils.check_arr_len(block_hash_arg, 32), height_arg);
+               Reference.reachabilityFence(block_hash_arg);
+               Reference.reachabilityFence(height_arg);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.BestBlock ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BestBlock(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
        long clone_ptr() {
                long ret = bindings.BestBlock_clone_ptr(this.ptr);
                Reference.reachabilityFence(this);
@@ -38,13 +87,25 @@ public class BestBlock extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Generates a non-cryptographic 64-bit hash of the BestBlock.
+        */
+       public long hash() {
+               long ret = bindings.BestBlock_hash(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       @Override public int hashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two BestBlocks contain equal inner contents.
         * 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(org.ldk.structs.BestBlock b) {
-               boolean ret = bindings.BestBlock_eq(this.ptr, b == null ? 0 : b.ptr);
+               boolean ret = bindings.BestBlock_eq(this.ptr, b.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(b);
                if (this != null) { this.ptrs_to.add(b); };
@@ -69,34 +130,23 @@ public class BestBlock extends CommonBase {
        }
 
        /**
-        * Returns a `BestBlock` as identified by the given block hash and height.
+        * Serialize the BestBlock object into a byte array which can be read by BestBlock_read
         */
-       public static BestBlock of(byte[] block_hash, int height) {
-               long ret = bindings.BestBlock_new(InternalUtils.check_arr_len(block_hash, 32), height);
-               Reference.reachabilityFence(block_hash);
-               Reference.reachabilityFence(height);
-               if (ret >= 0 && ret <= 4096) { return null; }
-               org.ldk.structs.BestBlock ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BestBlock(null, ret); }
-               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
-               return ret_hu_conv;
-       }
-
-       /**
-        * Returns the best block hash.
-        */
-       public byte[] block_hash() {
-               byte[] ret = bindings.BestBlock_block_hash(this.ptr);
+       public byte[] write() {
+               byte[] ret = bindings.BestBlock_write(this.ptr);
                Reference.reachabilityFence(this);
                return ret;
        }
 
        /**
-        * Returns the best block height.
+        * Read a BestBlock from a byte array, created by BestBlock_write
         */
-       public int height() {
-               int ret = bindings.BestBlock_height(this.ptr);
-               Reference.reachabilityFence(this);
-               return ret;
+       public static Result_BestBlockDecodeErrorZ read(byte[] ser) {
+               long ret = bindings.BestBlock_read(ser);
+               Reference.reachabilityFence(ser);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_BestBlockDecodeErrorZ ret_hu_conv = Result_BestBlockDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
        }
 
 }