Update auto-generated bindings with new upstream.
[ldk-java] / src / main / java / org / ldk / structs / UnsignedChannelAnnouncement.java
index a5b624b1da2209fc975340f06f5e8e1f07a8c07d..3404e76f7d8790a5598320c4d127dcc9e747ae3b 100644 (file)
@@ -11,23 +11,21 @@ public class UnsignedChannelAnnouncement extends CommonBase {
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
                super.finalize();
-               bindings.UnsignedChannelAnnouncement_free(ptr);
-       }
-
-       public static UnsignedChannelAnnouncement constructor_clone(UnsignedChannelAnnouncement orig) {
-               long ret = bindings.UnsignedChannelAnnouncement_clone(orig == null ? 0 : orig.ptr & ~1);
-               UnsignedChannelAnnouncement ret_hu_conv = new UnsignedChannelAnnouncement(null, ret);
-               ret_hu_conv.ptrs_to.add(orig);
-               return ret_hu_conv;
+               if (ptr != 0) { bindings.UnsignedChannelAnnouncement_free(ptr); }
        }
 
        public ChannelFeatures get_features() {
                long ret = bindings.UnsignedChannelAnnouncement_get_features(this.ptr);
                ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
-       // Skipped UnsignedChannelAnnouncement_set_features
+       public void set_features(ChannelFeatures val) {
+               bindings.UnsignedChannelAnnouncement_set_features(this.ptr, val == null ? 0 : val.ptr & ~1);
+               this.ptrs_to.add(val);
+       }
+
        public byte[] get_chain_hash() {
                byte[] ret = bindings.UnsignedChannelAnnouncement_get_chain_hash(this.ptr);
                return ret;
@@ -82,15 +80,21 @@ public class UnsignedChannelAnnouncement extends CommonBase {
                bindings.UnsignedChannelAnnouncement_set_bitcoin_key_2(this.ptr, val);
        }
 
-       public byte[] write(UnsignedChannelAnnouncement obj) {
-               byte[] ret = bindings.UnsignedChannelAnnouncement_write(obj == null ? 0 : obj.ptr & ~1);
-               this.ptrs_to.add(obj);
+       public UnsignedChannelAnnouncement clone() {
+               long ret = bindings.UnsignedChannelAnnouncement_clone(this.ptr);
+               UnsignedChannelAnnouncement ret_hu_conv = new UnsignedChannelAnnouncement(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+       public byte[] write() {
+               byte[] ret = bindings.UnsignedChannelAnnouncement_write(this.ptr);
                return ret;
        }
 
-       public static UnsignedChannelAnnouncement constructor_read(byte[] ser) {
+       public static Result_UnsignedChannelAnnouncementDecodeErrorZ constructor_read(byte[] ser) {
                long ret = bindings.UnsignedChannelAnnouncement_read(ser);
-               UnsignedChannelAnnouncement ret_hu_conv = new UnsignedChannelAnnouncement(null, ret);
+               Result_UnsignedChannelAnnouncementDecodeErrorZ ret_hu_conv = Result_UnsignedChannelAnnouncementDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }