Bindings updates
[ldk-java] / src / main / java / org / ldk / structs / OutPoint.java
index 74af3416719026f74c7abdd711fd914a1a705fdf..edc0a7f3c0a99a12e23d58a2e0ad5feec713ec06 100644 (file)
@@ -14,10 +14,10 @@ public class OutPoint extends CommonBase {
                if (ptr != 0) { bindings.OutPoint_free(ptr); }
        }
 
-       public static OutPoint constructor_clone(OutPoint orig) {
-               long ret = bindings.OutPoint_clone(orig == null ? 0 : orig.ptr & ~1);
+       public OutPoint clone() {
+               long ret = bindings.OutPoint_clone(this.ptr);
                OutPoint ret_hu_conv = new OutPoint(null, ret);
-               ret_hu_conv.ptrs_to.add(orig);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
@@ -42,6 +42,7 @@ public class OutPoint extends CommonBase {
        public static OutPoint constructor_new(byte[] txid_arg, short index_arg) {
                long ret = bindings.OutPoint_new(txid_arg, index_arg);
                OutPoint ret_hu_conv = new OutPoint(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
@@ -50,15 +51,15 @@ public class OutPoint extends CommonBase {
                return ret;
        }
 
-       public byte[] write(OutPoint obj) {
-               byte[] ret = bindings.OutPoint_write(obj == null ? 0 : obj.ptr & ~1);
-               this.ptrs_to.add(obj);
+       public byte[] write() {
+               byte[] ret = bindings.OutPoint_write(this.ptr);
                return ret;
        }
 
        public static OutPoint constructor_read(byte[] ser) {
                long ret = bindings.OutPoint_read(ser);
                OutPoint ret_hu_conv = new OutPoint(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }