X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FHTLCOutputInCommitment.ts;fp=ts%2Fstructs%2FHTLCOutputInCommitment.ts;h=42c2eccff62474343a4c46935a713f66b71336ff;hb=246459dcbc3be28c38b4951140a5933f4b3aa024;hp=545685e5aaf153ee4a370aa2731e12b230a3a25e;hpb=b52dde859c138f9257499496749d1eb89f9f6f43;p=ldk-java diff --git a/ts/structs/HTLCOutputInCommitment.ts b/ts/structs/HTLCOutputInCommitment.ts index 545685e5..42c2eccf 100644 --- a/ts/structs/HTLCOutputInCommitment.ts +++ b/ts/structs/HTLCOutputInCommitment.ts @@ -18,13 +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); - ret_hu_conv.ptrs_to.add(this); - return ret_hu_conv; - } - public boolean get_offered() { boolean ret = bindings.HTLCOutputInCommitment_get_offered(this.ptr); return ret; @@ -61,15 +54,21 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.HTLCOutputInCommitment_set_payment_hash(this.ptr, val); } + 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() { Uint8Array ret = bindings.HTLCOutputInCommitment_write(this.ptr); 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); - ret_hu_conv.ptrs_to.add(ret_hu_conv); + Result_HTLCOutputInCommitmentDecodeErrorZ ret_hu_conv = Result_HTLCOutputInCommitmentDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }