X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FHTLCOutputInCommitment.ts;h=3b93a6a7b18948d67db31385ad50496974d84c23;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=938d16f84f2bbebb33dacf480f0b38d00b6302c1;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/HTLCOutputInCommitment.ts b/ts/structs/HTLCOutputInCommitment.ts index 938d16f8..3b93a6a7 100644 --- a/ts/structs/HTLCOutputInCommitment.ts +++ b/ts/structs/HTLCOutputInCommitment.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.HTLCOutputInCommitment_free(this.ptr); } } - public HTLCOutputInCommitment clone() { - number ret = bindings.HTLCOutputInCommitment_clone(this.ptr); - const ret_hu_conv: HTLCOutputInCommitment = new HTLCOutputInCommitment(null, ret); - return ret_hu_conv; - } - public boolean get_offered() { boolean ret = bindings.HTLCOutputInCommitment_get_offered(this.ptr); return ret; @@ -57,7 +51,37 @@ import * as bindings from '../bindings' // TODO: figure out location } public void set_payment_hash(Uint8Array val) { - bindings.HTLCOutputInCommitment_set_payment_hash(this.ptr, val); + bindings.HTLCOutputInCommitment_set_payment_hash(this.ptr, InternalUtils.check_arr_len(val, 32)); + } + + public Option_u32Z get_transaction_output_index() { + number ret = bindings.HTLCOutputInCommitment_get_transaction_output_index(this.ptr); + Option_u32Z ret_hu_conv = Option_u32Z.constr_from_ptr(ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + public void set_transaction_output_index(Option_u32Z val) { + bindings.HTLCOutputInCommitment_set_transaction_output_index(this.ptr, val.ptr); + } + + public static HTLCOutputInCommitment constructor_new(boolean offered_arg, number amount_msat_arg, number cltv_expiry_arg, Uint8Array payment_hash_arg, Option_u32Z transaction_output_index_arg) { + number ret = bindings.HTLCOutputInCommitment_new(offered_arg, amount_msat_arg, cltv_expiry_arg, InternalUtils.check_arr_len(payment_hash_arg, 32), transaction_output_index_arg.ptr); + const ret_hu_conv: HTLCOutputInCommitment = new HTLCOutputInCommitment(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public number clone_ptr() { + number ret = bindings.HTLCOutputInCommitment_clone_ptr(this.ptr); + return ret; + } + + public HTLCOutputInCommitment clone() { + number ret = bindings.HTLCOutputInCommitment_clone(this.ptr); + const ret_hu_conv: HTLCOutputInCommitment = new HTLCOutputInCommitment(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; } public Uint8Array write() { @@ -65,9 +89,9 @@ import * as bindings from '../bindings' // TODO: figure out location return ret; } - public static HTLCOutputInCommitment constructor_read(Uint8Array ser) { + public static Result_HTLCOutputInCommitmentDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.HTLCOutputInCommitment_read(ser); - const ret_hu_conv: HTLCOutputInCommitment = new HTLCOutputInCommitment(null, ret); + Result_HTLCOutputInCommitmentDecodeErrorZ ret_hu_conv = Result_HTLCOutputInCommitmentDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }