X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FUnsignedChannelAnnouncement.ts;h=3966cb206b6ca37d92f5c83ce7b9ba8a870c6f14;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=84b2ca7f7b0f075fd07cb1606ebdbae39fc11eab;hpb=2f243794d7f279cdc81628a94533b70404bbe888;p=ldk-java diff --git a/ts/structs/UnsignedChannelAnnouncement.ts b/ts/structs/UnsignedChannelAnnouncement.ts index 84b2ca7f..3966cb20 100644 --- a/ts/structs/UnsignedChannelAnnouncement.ts +++ b/ts/structs/UnsignedChannelAnnouncement.ts @@ -18,13 +18,6 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UnsignedChannelAnnouncement_free(this.ptr); } } - public UnsignedChannelAnnouncement clone() { - number ret = bindings.UnsignedChannelAnnouncement_clone(this.ptr); - const ret_hu_conv: UnsignedChannelAnnouncement = new UnsignedChannelAnnouncement(null, ret); - ret_hu_conv.ptrs_to.add(this); - return ret_hu_conv; - } - public ChannelFeatures get_features() { number ret = bindings.UnsignedChannelAnnouncement_get_features(this.ptr); const ret_hu_conv: ChannelFeatures = new ChannelFeatures(null, ret); @@ -35,14 +28,6 @@ import * as bindings from '../bindings' // TODO: figure out location public void set_features(ChannelFeatures val) { bindings.UnsignedChannelAnnouncement_set_features(this.ptr, val == null ? 0 : val.ptr & ~1); this.ptrs_to.add(val); - // Due to rust's strict-ownership memory model, in some cases we need to "move" - // an object to pass exclusive ownership to the function being called. - // In most cases, we avoid this being visible in GC'd languages by cloning the object - // at the FFI layer, creating a new object which Rust can claim ownership of - // However, in some cases (eg here), there is no way to clone an object, and thus - // we actually have to pass full ownership to Rust. - // Thus, after this call, val is reset to null and is now a dummy object. - val.ptr = 0; } public Uint8Array get_chain_hash() { @@ -99,6 +84,13 @@ import * as bindings from '../bindings' // TODO: figure out location bindings.UnsignedChannelAnnouncement_set_bitcoin_key_2(this.ptr, val); } + public UnsignedChannelAnnouncement clone() { + number ret = bindings.UnsignedChannelAnnouncement_clone(this.ptr); + const ret_hu_conv: UnsignedChannelAnnouncement = new UnsignedChannelAnnouncement(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + public Uint8Array write() { Uint8Array ret = bindings.UnsignedChannelAnnouncement_write(this.ptr); return ret;