[C#] Run tests against release library in determinism CI run
[ldk-java] / ts / structs / UpdateAddHTLC.ts
diff --git a/ts/structs/UpdateAddHTLC.ts b/ts/structs/UpdateAddHTLC.ts
deleted file mode 100644 (file)
index 5622a5d..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-
-            
-import CommonBase from './CommonBase';
-import * as bindings from '../bindings' // TODO: figure out location
-
-
-
-            export default class UpdateAddHTLC extends CommonBase {
-                constructor(_dummy: object, ptr: number) {
-                    super(ptr);
-                }
-
-                
-                protected finalize() {
-                    super.finalize();
-
-                    if (this.ptr != 0) {
-                        bindings.UpdateAddHTLC_free(this.ptr);
-                    }
-                }
-       public Uint8Array get_channel_id() {
-               Uint8Array ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr);
-               return ret;
-       }
-
-       public void set_channel_id(Uint8Array val) {
-               bindings.UpdateAddHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
-       }
-
-       public number get_htlc_id() {
-               number ret = bindings.UpdateAddHTLC_get_htlc_id(this.ptr);
-               return ret;
-       }
-
-       public void set_htlc_id(number val) {
-               bindings.UpdateAddHTLC_set_htlc_id(this.ptr, val);
-       }
-
-       public number get_amount_msat() {
-               number ret = bindings.UpdateAddHTLC_get_amount_msat(this.ptr);
-               return ret;
-       }
-
-       public void set_amount_msat(number val) {
-               bindings.UpdateAddHTLC_set_amount_msat(this.ptr, val);
-       }
-
-       public Uint8Array get_payment_hash() {
-               Uint8Array ret = bindings.UpdateAddHTLC_get_payment_hash(this.ptr);
-               return ret;
-       }
-
-       public void set_payment_hash(Uint8Array val) {
-               bindings.UpdateAddHTLC_set_payment_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
-       }
-
-       public number get_cltv_expiry() {
-               number ret = bindings.UpdateAddHTLC_get_cltv_expiry(this.ptr);
-               return ret;
-       }
-
-       public void set_cltv_expiry(number val) {
-               bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val);
-       }
-
-       public number clone_ptr() {
-               number ret = bindings.UpdateAddHTLC_clone_ptr(this.ptr);
-               return ret;
-       }
-
-       public UpdateAddHTLC clone() {
-               number ret = bindings.UpdateAddHTLC_clone(this.ptr);
-               const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret);
-               ret_hu_conv.ptrs_to.add(this);
-               return ret_hu_conv;
-       }
-
-       public Uint8Array write() {
-               Uint8Array ret = bindings.UpdateAddHTLC_write(this.ptr);
-               return ret;
-       }
-
-       public static Result_UpdateAddHTLCDecodeErrorZ constructor_read(Uint8Array ser) {
-               number ret = bindings.UpdateAddHTLC_read(ser);
-               Result_UpdateAddHTLCDecodeErrorZ ret_hu_conv = Result_UpdateAddHTLCDecodeErrorZ.constr_from_ptr(ret);
-               return ret_hu_conv;
-       }
-
-}