Merge pull request #2 from TheBlueMatt/main
[ldk-java] / ts / structs / RevokeAndACK.ts
index 15b9945b58350c9bcfe9bb4061cc528b817a952e..d521246952e6f179e61e07076dab1efe544ba542 100644 (file)
@@ -18,13 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location
                         bindings.RevokeAndACK_free(this.ptr);
                     }
                 }
-       public RevokeAndACK clone() {
-               number ret = bindings.RevokeAndACK_clone(this.ptr);
-               const ret_hu_conv: RevokeAndACK = new RevokeAndACK(null, ret);
-               ret_hu_conv.ptrs_to.add(this);
-               return ret_hu_conv;
-       }
-
        public Uint8Array get_channel_id() {
                Uint8Array ret = bindings.RevokeAndACK_get_channel_id(this.ptr);
                return ret;
@@ -59,15 +52,21 @@ import * as bindings from '../bindings' // TODO: figure out location
                return ret_hu_conv;
        }
 
+       public RevokeAndACK clone() {
+               number ret = bindings.RevokeAndACK_clone(this.ptr);
+               const ret_hu_conv: RevokeAndACK = new RevokeAndACK(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
        public Uint8Array write() {
                Uint8Array ret = bindings.RevokeAndACK_write(this.ptr);
                return ret;
        }
 
-       public static RevokeAndACK constructor_read(Uint8Array ser) {
+       public static Result_RevokeAndACKDecodeErrorZ constructor_read(Uint8Array ser) {
                number ret = bindings.RevokeAndACK_read(ser);
-               const ret_hu_conv: RevokeAndACK = new RevokeAndACK(null, ret);
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+               Result_RevokeAndACKDecodeErrorZ ret_hu_conv = Result_RevokeAndACKDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }