X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelUpdate.java;h=805b4511cbbbc7fdfa3475bb2f6323c08395d8a0;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=8baf1cee251a0ed010c47b71c4337735721a3fa3;hpb=a9b82019e7ffa7d32d44943133bb64e1197bd2f1;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelUpdate.java b/src/main/java/org/ldk/structs/ChannelUpdate.java index 8baf1cee..805b4511 100644 --- a/src/main/java/org/ldk/structs/ChannelUpdate.java +++ b/src/main/java/org/ldk/structs/ChannelUpdate.java @@ -14,12 +14,6 @@ public class ChannelUpdate extends CommonBase { if (ptr != 0) { bindings.ChannelUpdate_free(ptr); } } - public ChannelUpdate clone() { - long ret = bindings.ChannelUpdate_clone(this.ptr); - ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); - return ret_hu_conv; - } - public byte[] get_signature() { byte[] ret = bindings.ChannelUpdate_get_signature(this.ptr); return ret; @@ -32,6 +26,7 @@ public class ChannelUpdate extends CommonBase { public UnsignedChannelUpdate get_contents() { long ret = bindings.ChannelUpdate_get_contents(this.ptr); UnsignedChannelUpdate ret_hu_conv = new UnsignedChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -43,18 +38,26 @@ public class ChannelUpdate extends CommonBase { public static ChannelUpdate constructor_new(byte[] signature_arg, UnsignedChannelUpdate contents_arg) { long ret = bindings.ChannelUpdate_new(signature_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1); ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); ret_hu_conv.ptrs_to.add(contents_arg); return ret_hu_conv; } + public ChannelUpdate clone() { + long ret = bindings.ChannelUpdate_clone(this.ptr); + ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + public byte[] write() { byte[] ret = bindings.ChannelUpdate_write(this.ptr); return ret; } - public static ChannelUpdate constructor_read(byte[] ser) { + public static Result_ChannelUpdateDecodeErrorZ constructor_read(byte[] ser) { long ret = bindings.ChannelUpdate_read(ser); - ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); + Result_ChannelUpdateDecodeErrorZ ret_hu_conv = Result_ChannelUpdateDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }