[C#] Run tests against release library in determinism CI run
[ldk-java] / ts / structs / HTLCFailChannelUpdate.ts
diff --git a/ts/structs/HTLCFailChannelUpdate.ts b/ts/structs/HTLCFailChannelUpdate.ts
deleted file mode 100644 (file)
index dd5ac44..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-
-import CommonBase from './CommonBase';
-import * as bindings from '../bindings' // TODO: figure out location
-
-export default class HTLCFailChannelUpdate extends CommonBase {
-       protected constructor(_dummy: object, ptr: number) { super(ptr); }
-       protected finalize() {
-               super.finalize();
-               if (this.ptr != 0) { bindings.HTLCFailChannelUpdate_free(this.ptr); }
-       }
-       static constr_from_ptr(ptr: number): HTLCFailChannelUpdate {
-               const raw_val: bindings.LDKHTLCFailChannelUpdate = bindings.LDKHTLCFailChannelUpdate_ref_from_ptr(ptr);
-               if (raw_val instanceof bindings.LDKHTLCFailChannelUpdate.ChannelUpdateMessage) {
-                       return new ChannelUpdateMessage(this.ptr, raw_val);
-               }
-               if (raw_val instanceof bindings.LDKHTLCFailChannelUpdate.ChannelClosed) {
-                       return new ChannelClosed(this.ptr, raw_val);
-               }
-               if (raw_val instanceof bindings.LDKHTLCFailChannelUpdate.NodeFailure) {
-                       return new NodeFailure(this.ptr, raw_val);
-               }
-               throw new Error('oops, this should be unreachable'); // Unreachable without extending the (internal) bindings interface
-       }
-
-}
-export class ChannelUpdateMessage extends HTLCFailChannelUpdate {
-       public msg: ChannelUpdate;
-       private constructor(ptr: number, obj: bindings.LDKHTLCFailChannelUpdate.ChannelUpdateMessage) {
-               super(null, ptr);
-               const msg: number = obj.msg;
-               const msg_hu_conv: ChannelUpdate = new ChannelUpdate(null, msg);
-                       msg_hu_conv.ptrs_to.add(this);
-               this.msg = msg_hu_conv;
-       }
-}
-export class ChannelClosed extends HTLCFailChannelUpdate {
-       public short_channel_id: number;
-       public is_permanent: boolean;
-       private constructor(ptr: number, obj: bindings.LDKHTLCFailChannelUpdate.ChannelClosed) {
-               super(null, ptr);
-               this.short_channel_id = obj.short_channel_id;
-               this.is_permanent = obj.is_permanent;
-       }
-}
-export class NodeFailure extends HTLCFailChannelUpdate {
-       public node_id: Uint8Array;
-       public is_permanent: boolean;
-       private constructor(ptr: number, obj: bindings.LDKHTLCFailChannelUpdate.NodeFailure) {
-               super(null, ptr);
-               this.node_id = obj.node_id;
-               this.is_permanent = obj.is_permanent;
-       }
-}
-       public HTLCFailChannelUpdate clone() {
-               number ret = bindings.HTLCFailChannelUpdate_clone(this.ptr);
-               HTLCFailChannelUpdate ret_hu_conv = HTLCFailChannelUpdate.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(this);
-               return ret_hu_conv;
-       }
-
-       public static HTLCFailChannelUpdate constructor_channel_update_message(ChannelUpdate msg) {
-               number ret = bindings.HTLCFailChannelUpdate_channel_update_message(msg == null ? 0 : msg.ptr & ~1);
-               HTLCFailChannelUpdate ret_hu_conv = HTLCFailChannelUpdate.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
-               ret_hu_conv.ptrs_to.add(msg);
-               return ret_hu_conv;
-       }
-
-       public static HTLCFailChannelUpdate constructor_channel_closed(number short_channel_id, boolean is_permanent) {
-               number ret = bindings.HTLCFailChannelUpdate_channel_closed(short_channel_id, is_permanent);
-               HTLCFailChannelUpdate ret_hu_conv = HTLCFailChannelUpdate.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
-               return ret_hu_conv;
-       }
-
-       public static HTLCFailChannelUpdate constructor_node_failure(Uint8Array node_id, boolean is_permanent) {
-               number ret = bindings.HTLCFailChannelUpdate_node_failure(node_id, is_permanent);
-               HTLCFailChannelUpdate ret_hu_conv = HTLCFailChannelUpdate.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
-               return ret_hu_conv;
-       }
-
-}