X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FChannelFeatures.ts;h=05694319ab53a5292c77c7a92b766a5efce599d2;hb=75bc9cf63b967c96dc3e22d536ddd434395a3790;hp=c0be3bbad2c18daa8c3b20a82448ad614d04aab8;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/ChannelFeatures.ts b/ts/structs/ChannelFeatures.ts index c0be3bba..05694319 100644 --- a/ts/structs/ChannelFeatures.ts +++ b/ts/structs/ChannelFeatures.ts @@ -18,4 +18,47 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.ChannelFeatures_free(this.ptr); } } + public boolean eq(ChannelFeatures b) { + boolean ret = bindings.ChannelFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + this.ptrs_to.add(b); + return ret; + } + + public ChannelFeatures clone() { + number ret = bindings.ChannelFeatures_clone(this.ptr); + const ret_hu_conv: ChannelFeatures = new ChannelFeatures(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + public static ChannelFeatures constructor_empty() { + number ret = bindings.ChannelFeatures_empty(); + const ret_hu_conv: ChannelFeatures = new ChannelFeatures(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public static ChannelFeatures constructor_known() { + number ret = bindings.ChannelFeatures_known(); + const ret_hu_conv: ChannelFeatures = new ChannelFeatures(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public boolean requires_unknown_bits() { + boolean ret = bindings.ChannelFeatures_requires_unknown_bits(this.ptr); + return ret; + } + + public Uint8Array write() { + Uint8Array ret = bindings.ChannelFeatures_write(this.ptr); + return ret; + } + + public static Result_ChannelFeaturesDecodeErrorZ constructor_read(Uint8Array ser) { + number ret = bindings.ChannelFeatures_read(ser); + Result_ChannelFeaturesDecodeErrorZ ret_hu_conv = Result_ChannelFeaturesDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }