X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FRevokeAndACK.ts;h=d521246952e6f179e61e07076dab1efe544ba542;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=588081023f5f3ce4480251ffdcac1b6a273ba296;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/RevokeAndACK.ts b/ts/structs/RevokeAndACK.ts index 58808102..d5212469 100644 --- a/ts/structs/RevokeAndACK.ts +++ b/ts/structs/RevokeAndACK.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.RevokeAndACK_free(this.ptr); } } - public RevokeAndACK clone() { - number ret = bindings.RevokeAndACK_clone(this.ptr); - const ret_hu_conv: RevokeAndACK = new RevokeAndACK(null, ret); - return ret_hu_conv; - } - public Uint8Array get_channel_id() { Uint8Array ret = bindings.RevokeAndACK_get_channel_id(this.ptr); return ret; @@ -54,6 +48,14 @@ import * as bindings from '../bindings' // TODO: figure out location public static RevokeAndACK constructor_new(Uint8Array channel_id_arg, Uint8Array per_commitment_secret_arg, Uint8Array next_per_commitment_point_arg) { number ret = bindings.RevokeAndACK_new(channel_id_arg, per_commitment_secret_arg, next_per_commitment_point_arg); const ret_hu_conv: RevokeAndACK = new RevokeAndACK(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public RevokeAndACK clone() { + number ret = bindings.RevokeAndACK_clone(this.ptr); + const ret_hu_conv: RevokeAndACK = new RevokeAndACK(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 RevokeAndACK constructor_read(Uint8Array ser) { + public static Result_RevokeAndACKDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.RevokeAndACK_read(ser); - const ret_hu_conv: RevokeAndACK = new RevokeAndACK(null, ret); + Result_RevokeAndACKDecodeErrorZ ret_hu_conv = Result_RevokeAndACKDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }