[C#] Run tests against release library in determinism CI run
[ldk-java] / ts / structs / UpdateFailMalformedHTLC.ts
diff --git a/ts/structs/UpdateFailMalformedHTLC.ts b/ts/structs/UpdateFailMalformedHTLC.ts
deleted file mode 100644 (file)
index 3b894fb..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-
-            
-import CommonBase from './CommonBase';
-import * as bindings from '../bindings' // TODO: figure out location
-
-
-
-            export default class UpdateFailMalformedHTLC extends CommonBase {
-                constructor(_dummy: object, ptr: number) {
-                    super(ptr);
-                }
-
-                
-                protected finalize() {
-                    super.finalize();
-
-                    if (this.ptr != 0) {
-                        bindings.UpdateFailMalformedHTLC_free(this.ptr);
-                    }
-                }
-       public Uint8Array get_channel_id() {
-               Uint8Array ret = bindings.UpdateFailMalformedHTLC_get_channel_id(this.ptr);
-               return ret;
-       }
-
-       public void set_channel_id(Uint8Array val) {
-               bindings.UpdateFailMalformedHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
-       }
-
-       public number get_htlc_id() {
-               number ret = bindings.UpdateFailMalformedHTLC_get_htlc_id(this.ptr);
-               return ret;
-       }
-
-       public void set_htlc_id(number val) {
-               bindings.UpdateFailMalformedHTLC_set_htlc_id(this.ptr, val);
-       }
-
-       public number get_failure_code() {
-               number ret = bindings.UpdateFailMalformedHTLC_get_failure_code(this.ptr);
-               return ret;
-       }
-
-       public void set_failure_code(number val) {
-               bindings.UpdateFailMalformedHTLC_set_failure_code(this.ptr, val);
-       }
-
-       public number clone_ptr() {
-               number ret = bindings.UpdateFailMalformedHTLC_clone_ptr(this.ptr);
-               return ret;
-       }
-
-       public UpdateFailMalformedHTLC clone() {
-               number ret = bindings.UpdateFailMalformedHTLC_clone(this.ptr);
-               const ret_hu_conv: UpdateFailMalformedHTLC = new UpdateFailMalformedHTLC(null, ret);
-               ret_hu_conv.ptrs_to.add(this);
-               return ret_hu_conv;
-       }
-
-       public Uint8Array write() {
-               Uint8Array ret = bindings.UpdateFailMalformedHTLC_write(this.ptr);
-               return ret;
-       }
-
-       public static Result_UpdateFailMalformedHTLCDecodeErrorZ constructor_read(Uint8Array ser) {
-               number ret = bindings.UpdateFailMalformedHTLC_read(ser);
-               Result_UpdateFailMalformedHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailMalformedHTLCDecodeErrorZ.constr_from_ptr(ret);
-               return ret_hu_conv;
-       }
-
-}