X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FAcceptChannel.ts;fp=ts%2Fstructs%2FAcceptChannel.ts;h=ba21a7ca7b1beb3acf852db9591f71d00bb86630;hb=246459dcbc3be28c38b4951140a5933f4b3aa024;hp=e9719e48e7f96741cc26c17f7265badf62c07185;hpb=b52dde859c138f9257499496749d1eb89f9f6f43;p=ldk-java diff --git a/ts/structs/AcceptChannel.ts b/ts/structs/AcceptChannel.ts index e9719e48..ba21a7ca 100644 --- a/ts/structs/AcceptChannel.ts +++ b/ts/structs/AcceptChannel.ts @@ -18,13 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.AcceptChannel_free(this.ptr); } } - public AcceptChannel clone() { - number ret = bindings.AcceptChannel_clone(this.ptr); - const ret_hu_conv: AcceptChannel = new AcceptChannel(null, ret); - ret_hu_conv.ptrs_to.add(this); - return ret_hu_conv; - } - public Uint8Array get_temporary_channel_id() { Uint8Array ret = bindings.AcceptChannel_get_temporary_channel_id(this.ptr); return ret; @@ -151,15 +144,21 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.AcceptChannel_set_first_per_commitment_point(this.ptr, val); } + public AcceptChannel clone() { + number ret = bindings.AcceptChannel_clone(this.ptr); + const ret_hu_conv: AcceptChannel = new AcceptChannel(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + public Uint8Array write() { Uint8Array ret = bindings.AcceptChannel_write(this.ptr); return ret; } - public static AcceptChannel constructor_read(Uint8Array ser) { + public static Result_AcceptChannelDecodeErrorZ constructor_read(Uint8Array ser) { number ret = bindings.AcceptChannel_read(ser); - const ret_hu_conv: AcceptChannel = new AcceptChannel(null, ret); - ret_hu_conv.ptrs_to.add(ret_hu_conv); + Result_AcceptChannelDecodeErrorZ ret_hu_conv = Result_AcceptChannelDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }