X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUpdateAddHTLC.ts;h=e4506a6b64a8f55d648596d2645217154cf97988;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=52c5ed48199a19a25a176f85656e0c6f47970457;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/UpdateAddHTLC.ts b/ts/structs/UpdateAddHTLC.ts index 52c5ed48..e4506a6b 100644 --- a/ts/structs/UpdateAddHTLC.ts +++ b/ts/structs/UpdateAddHTLC.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateAddHTLC_free(this.ptr); } } - public UpdateAddHTLC clone() { - number ret = bindings.UpdateAddHTLC_clone(this.ptr); - const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret); - return ret_hu_conv; - } - public Uint8Array get_channel_id() { Uint8Array ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr); return ret; @@ -69,14 +63,21 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val); } + public UpdateAddHTLC clone() { + number ret = bindings.UpdateAddHTLC_clone(this.ptr); + const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + public Uint8Array write() { Uint8Array ret = bindings.UpdateAddHTLC_write(this.ptr); return ret; } - public static UpdateAddHTLC constructor_read(Uint8Array ser) { + public static Result_UpdateAddHTLCDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.UpdateAddHTLC_read(ser); - const ret_hu_conv: UpdateAddHTLC = new UpdateAddHTLC(null, ret); + Result_UpdateAddHTLCDecodeErrorZ ret_hu_conv = Result_UpdateAddHTLCDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }