X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUpdateAddHTLC.ts;h=5622a5da3b69acaf386ed83ea56123288fc1694f;hb=d4846238a5f4245ac3cee8dbf3f196ad964564d5;hp=862a8763a093dc86e854521cdaf8293ad9f67c05;hpb=fed2245c60159f6c074c9ed5c0f3ce273ad9841b;p=ldk-java diff --git a/ts/structs/UpdateAddHTLC.ts b/ts/structs/UpdateAddHTLC.ts index 862a8763..5622a5da 100644 --- a/ts/structs/UpdateAddHTLC.ts +++ b/ts/structs/UpdateAddHTLC.ts @@ -18,20 +18,13 @@ 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); - ret_hu_conv.ptrs_to.add(this); - return ret_hu_conv; - } - public Uint8Array get_channel_id() { Uint8Array ret = bindings.UpdateAddHTLC_get_channel_id(this.ptr); return ret; } public void set_channel_id(Uint8Array val) { - bindings.UpdateAddHTLC_set_channel_id(this.ptr, val); + bindings.UpdateAddHTLC_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); } public number get_htlc_id() { @@ -58,7 +51,7 @@ import * as bindings from '../bindings' // TODO: figure out location } public void set_payment_hash(Uint8Array val) { - bindings.UpdateAddHTLC_set_payment_hash(this.ptr, val); + bindings.UpdateAddHTLC_set_payment_hash(this.ptr, InternalUtils.check_arr_len(val, 32)); } public number get_cltv_expiry() { @@ -70,15 +63,26 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateAddHTLC_set_cltv_expiry(this.ptr, val); } + public number clone_ptr() { + number ret = bindings.UpdateAddHTLC_clone_ptr(this.ptr); + return ret; + } + + 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); - ret_hu_conv.ptrs_to.add(ret_hu_conv); + Result_UpdateAddHTLCDecodeErrorZ ret_hu_conv = Result_UpdateAddHTLCDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }