X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUpdateFee.ts;h=6ffed4250b308f36bc532ed7654690273649e462;hb=2945e9ce850435d0683bc113a258b5e65b4ce250;hp=ed504174cd0ca578bb52808dcd77738b3cd2c625;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/UpdateFee.ts b/ts/structs/UpdateFee.ts index ed504174..6ffed425 100644 --- a/ts/structs/UpdateFee.ts +++ b/ts/structs/UpdateFee.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UpdateFee_free(this.ptr); } } - public UpdateFee clone() { - number ret = bindings.UpdateFee_clone(this.ptr); - const ret_hu_conv: UpdateFee = new UpdateFee(null, ret); - return ret_hu_conv; - } - public Uint8Array get_channel_id() { Uint8Array ret = bindings.UpdateFee_get_channel_id(this.ptr); return ret; @@ -45,6 +39,14 @@ import * as bindings from '../bindings' // TODO: figure out location public static UpdateFee constructor_new(Uint8Array channel_id_arg, number feerate_per_kw_arg) { number ret = bindings.UpdateFee_new(channel_id_arg, feerate_per_kw_arg); const ret_hu_conv: UpdateFee = new UpdateFee(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public UpdateFee clone() { + number ret = bindings.UpdateFee_clone(this.ptr); + const ret_hu_conv: UpdateFee = new UpdateFee(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -53,9 +55,9 @@ import * as bindings from '../bindings' // TODO: figure out location return ret; } - public static UpdateFee constructor_read(Uint8Array ser) { + public static Result_UpdateFeeDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.UpdateFee_read(ser); - const ret_hu_conv: UpdateFee = new UpdateFee(null, ret); + Result_UpdateFeeDecodeErrorZ ret_hu_conv = Result_UpdateFeeDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }