X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=inline;f=ts%2Fstructs%2FDataLossProtect.ts;h=4f9bd46a084424fc1d1f784d542147c342075b4c;hb=0c72b9556a2af86bba90d6ce78683a57fb18151f;hp=7e1183a18e2994921491b5cb05db62be3dde56a7;hpb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;p=ldk-java diff --git a/ts/structs/DataLossProtect.ts b/ts/structs/DataLossProtect.ts index 7e1183a1..4f9bd46a 100644 --- a/ts/structs/DataLossProtect.ts +++ b/ts/structs/DataLossProtect.ts @@ -18,12 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.DataLossProtect_free(this.ptr); } } - public DataLossProtect clone() { - number ret = bindings.DataLossProtect_clone(this.ptr); - const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret); - return ret_hu_conv; - } - public Uint8Array get_your_last_per_commitment_secret() { Uint8Array ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr); return ret; @@ -45,6 +39,14 @@ import * as bindings from '../bindings' // TODO: figure out location public static DataLossProtect constructor_new(Uint8Array your_last_per_commitment_secret_arg, Uint8Array my_current_per_commitment_point_arg) { number ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg); const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public DataLossProtect clone() { + number ret = bindings.DataLossProtect_clone(this.ptr); + const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; }