Make genbindings.sh only build one of java/wasm, test wasm in CI
[ldk-java] / ts / structs / UpdateFee.ts
index ed504174cd0ca578bb52808dcd77738b3cd2c625..a86e590349cd0f99bf6f4bd60277e03635d39eed 100644 (file)
@@ -18,19 +18,13 @@ import * as bindings from '../bindings' // TODO: figure out location
                         bindings.UpdateFee_free(this.ptr);
                     }
                 }
-       public UpdateFee clone() {
-               number ret = bindings.UpdateFee_clone(this.ptr);
-               const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
-               return ret_hu_conv;
-       }
-
        public Uint8Array get_channel_id() {
                Uint8Array ret = bindings.UpdateFee_get_channel_id(this.ptr);
                return ret;
        }
 
        public void set_channel_id(Uint8Array val) {
-               bindings.UpdateFee_set_channel_id(this.ptr, val);
+               bindings.UpdateFee_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
        }
 
        public number get_feerate_per_kw() {
@@ -43,8 +37,21 @@ import * as bindings from '../bindings' // TODO: figure out location
        }
 
        public static UpdateFee constructor_new(Uint8Array channel_id_arg, number feerate_per_kw_arg) {
-               number ret = bindings.UpdateFee_new(channel_id_arg, feerate_per_kw_arg);
+               number ret = bindings.UpdateFee_new(InternalUtils.check_arr_len(channel_id_arg, 32), feerate_per_kw_arg);
+               const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+               return ret_hu_conv;
+       }
+
+       public number clone_ptr() {
+               number ret = bindings.UpdateFee_clone_ptr(this.ptr);
+               return ret;
+       }
+
+       public UpdateFee clone() {
+               number ret = bindings.UpdateFee_clone(this.ptr);
                const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
@@ -53,9 +60,9 @@ import * as bindings from '../bindings' // TODO: figure out location
                return ret;
        }
 
-       public static UpdateFee constructor_read(Uint8Array ser) {
+       public static Result_UpdateFeeDecodeErrorZ constructor_read(Uint8Array ser) {
                number ret = bindings.UpdateFee_read(ser);
-               const ret_hu_conv: UpdateFee = new UpdateFee(null, ret);
+               Result_UpdateFeeDecodeErrorZ ret_hu_conv = Result_UpdateFeeDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }