X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUpdateFulfillHTLC.ts;h=02a0a7a5a588260416ddcc867186f2232c5c5fee;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=63962f776685333a0d6869d092bfda873e446dd0;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/UpdateFulfillHTLC.ts b/ts/structs/UpdateFulfillHTLC.ts index 63962f77..02a0a7a5 100644 --- a/ts/structs/UpdateFulfillHTLC.ts +++ b/ts/structs/UpdateFulfillHTLC.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateFulfillHTLC_free(this.ptr); } } - public UpdateFulfillHTLC clone() { - number ret = bindings.UpdateFulfillHTLC_clone(this.ptr); - const ret_hu_conv: UpdateFulfillHTLC = new UpdateFulfillHTLC(null, ret); - return ret_hu_conv; - } - public Uint8Array get_channel_id() { Uint8Array ret = bindings.UpdateFulfillHTLC_get_channel_id(this.ptr); return ret; @@ -54,6 +48,14 @@ import * as bindings from '../bindings' // TODO: figure out location public static UpdateFulfillHTLC constructor_new(Uint8Array channel_id_arg, number htlc_id_arg, Uint8Array payment_preimage_arg) { number ret = bindings.UpdateFulfillHTLC_new(channel_id_arg, htlc_id_arg, payment_preimage_arg); const ret_hu_conv: UpdateFulfillHTLC = new UpdateFulfillHTLC(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public UpdateFulfillHTLC clone() { + number ret = bindings.UpdateFulfillHTLC_clone(this.ptr); + const ret_hu_conv: UpdateFulfillHTLC = new UpdateFulfillHTLC(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -62,9 +64,9 @@ import * as bindings from '../bindings' // TODO: figure out location return ret; } - public static UpdateFulfillHTLC constructor_read(Uint8Array ser) { + public static Result_UpdateFulfillHTLCDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.UpdateFulfillHTLC_read(ser); - const ret_hu_conv: UpdateFulfillHTLC = new UpdateFulfillHTLC(null, ret); + Result_UpdateFulfillHTLCDecodeErrorZ ret_hu_conv = Result_UpdateFulfillHTLCDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }