X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUpdateFailHTLC.ts;h=afe36ae99db5d40579bed95721abe772d4de9e26;hb=0fee03a8095f5599f8eccd920c1b1af6b3a20260;hp=c838d7c55e1567627f573c6659efd1544e631ae6;hpb=acecce750cf1159a51f9d1a4dbfd717520739e92;p=ldk-java diff --git a/ts/structs/UpdateFailHTLC.ts b/ts/structs/UpdateFailHTLC.ts index c838d7c5..afe36ae9 100644 --- a/ts/structs/UpdateFailHTLC.ts +++ b/ts/structs/UpdateFailHTLC.ts @@ -18,19 +18,13 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateFailHTLC_free(this.ptr); } } - public UpdateFailHTLC clone() { - number ret = bindings.UpdateFailHTLC_clone(this.ptr); - const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret); - return ret_hu_conv; - } - public Uint8Array get_channel_id() { Uint8Array ret = bindings.UpdateFailHTLC_get_channel_id(this.ptr); return ret; } public void set_channel_id(Uint8Array val) { - bindings.UpdateFailHTLC_set_channel_id(this.ptr, val); + bindings.UpdateFailHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); } public number get_htlc_id() { @@ -42,14 +36,26 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateFailHTLC_set_htlc_id(this.ptr, val); } + public number clone_ptr() { + number ret = bindings.UpdateFailHTLC_clone_ptr(this.ptr); + return ret; + } + + public UpdateFailHTLC clone() { + number ret = bindings.UpdateFailHTLC_clone(this.ptr); + const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + public Uint8Array write() { Uint8Array ret = bindings.UpdateFailHTLC_write(this.ptr); return ret; } - public static UpdateFailHTLC constructor_read(Uint8Array ser) { + public static Result_UpdateFailHTLCDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.UpdateFailHTLC_read(ser); - const ret_hu_conv: UpdateFailHTLC = new UpdateFailHTLC(null, ret); + Result_UpdateFailHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFailHTLCDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }