[C#] Run tests against release library in determinism CI run
[ldk-java] / ts / structs / QueryShortChannelIds.ts
diff --git a/ts/structs/QueryShortChannelIds.ts b/ts/structs/QueryShortChannelIds.ts
deleted file mode 100644 (file)
index 5afafcf..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-
-            
-import CommonBase from './CommonBase';
-import * as bindings from '../bindings' // TODO: figure out location
-
-
-
-            export default class QueryShortChannelIds extends CommonBase {
-                constructor(_dummy: object, ptr: number) {
-                    super(ptr);
-                }
-
-                
-                protected finalize() {
-                    super.finalize();
-
-                    if (this.ptr != 0) {
-                        bindings.QueryShortChannelIds_free(this.ptr);
-                    }
-                }
-       public Uint8Array get_chain_hash() {
-               Uint8Array ret = bindings.QueryShortChannelIds_get_chain_hash(this.ptr);
-               return ret;
-       }
-
-       public void set_chain_hash(Uint8Array val) {
-               bindings.QueryShortChannelIds_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
-       }
-
-       public void set_short_channel_ids(number[] val) {
-               bindings.QueryShortChannelIds_set_short_channel_ids(this.ptr, val);
-       }
-
-       public static QueryShortChannelIds constructor_new(Uint8Array chain_hash_arg, number[] short_channel_ids_arg) {
-               number ret = bindings.QueryShortChannelIds_new(InternalUtils.check_arr_len(chain_hash_arg, 32), short_channel_ids_arg);
-               const ret_hu_conv: QueryShortChannelIds = new QueryShortChannelIds(null, ret);
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
-               return ret_hu_conv;
-       }
-
-       public number clone_ptr() {
-               number ret = bindings.QueryShortChannelIds_clone_ptr(this.ptr);
-               return ret;
-       }
-
-       public QueryShortChannelIds clone() {
-               number ret = bindings.QueryShortChannelIds_clone(this.ptr);
-               const ret_hu_conv: QueryShortChannelIds = new QueryShortChannelIds(null, ret);
-               ret_hu_conv.ptrs_to.add(this);
-               return ret_hu_conv;
-       }
-
-       public static Result_QueryShortChannelIdsDecodeErrorZ constructor_read(Uint8Array ser) {
-               number ret = bindings.QueryShortChannelIds_read(ser);
-               Result_QueryShortChannelIdsDecodeErrorZ ret_hu_conv = Result_QueryShortChannelIdsDecodeErrorZ.constr_from_ptr(ret);
-               return ret_hu_conv;
-       }
-
-       public Uint8Array write() {
-               Uint8Array ret = bindings.QueryShortChannelIds_write(this.ptr);
-               return ret;
-       }
-
-}