X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FChannelUpdate.ts;h=61c2af4eb5f55718f99037bba7a198e460dcfded;hb=a8d80c689a0a67145d4992ea96cdc4acdc6f954d;hp=9a8244da910bb8595ae8f5c7a5d2cff321b58e50;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/ChannelUpdate.ts b/ts/structs/ChannelUpdate.ts index 9a8244da..61c2af4e 100644 --- a/ts/structs/ChannelUpdate.ts +++ b/ts/structs/ChannelUpdate.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.ChannelUpdate_free(this.ptr); } } - public ChannelUpdate clone() { - number ret = bindings.ChannelUpdate_clone(this.ptr); - const ret_hu_conv: ChannelUpdate = new ChannelUpdate(null, ret); - return ret_hu_conv; - } - public Uint8Array get_signature() { Uint8Array ret = bindings.ChannelUpdate_get_signature(this.ptr); return ret; @@ -36,6 +30,7 @@ import * as bindings from '../bindings' // TODO: figure out location public UnsignedChannelUpdate get_contents() { number ret = bindings.ChannelUpdate_get_contents(this.ptr); const ret_hu_conv: UnsignedChannelUpdate = new UnsignedChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -47,18 +42,26 @@ import * as bindings from '../bindings' // TODO: figure out location public static ChannelUpdate constructor_new(Uint8Array signature_arg, UnsignedChannelUpdate contents_arg) { number ret = bindings.ChannelUpdate_new(signature_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1); const ret_hu_conv: ChannelUpdate = new ChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); ret_hu_conv.ptrs_to.add(contents_arg); return ret_hu_conv; } + public ChannelUpdate clone() { + number ret = bindings.ChannelUpdate_clone(this.ptr); + const ret_hu_conv: ChannelUpdate = new ChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + public Uint8Array write() { Uint8Array ret = bindings.ChannelUpdate_write(this.ptr); return ret; } - public static ChannelUpdate constructor_read(Uint8Array ser) { + public static Result_ChannelUpdateDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.ChannelUpdate_read(ser); - const ret_hu_conv: ChannelUpdate = new ChannelUpdate(null, ret); + Result_ChannelUpdateDecodeErrorZ ret_hu_conv = Result_ChannelUpdateDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }