X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FFundingCreated.java;h=0585d27a0d55c24907c2383a8bae8de2d4a61756;hb=c6bac88847b7c09560af81f00ba8dd3c2ebe3a19;hp=6faf150f17f28c6633c42749eb65504a56969445;hpb=17113550a5fefab21f39f27fbfe02646b8db53ae;p=ldk-java diff --git a/src/main/java/org/ldk/structs/FundingCreated.java b/src/main/java/org/ldk/structs/FundingCreated.java index 6faf150f..0585d27a 100644 --- a/src/main/java/org/ldk/structs/FundingCreated.java +++ b/src/main/java/org/ldk/structs/FundingCreated.java @@ -4,6 +4,7 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import javax.annotation.Nullable; /** @@ -64,7 +65,7 @@ public class FundingCreated extends CommonBase { } /** - * The signature of the channel initiator (funder) on the funding transaction + * The signature of the channel initiator (funder) on the initial commitment transaction */ public byte[] get_signature() { byte[] ret = bindings.FundingCreated_get_signature(this.ptr); @@ -72,7 +73,7 @@ public class FundingCreated extends CommonBase { } /** - * The signature of the channel initiator (funder) on the funding transaction + * The signature of the channel initiator (funder) on the initial commitment transaction */ public void set_signature(byte[] val) { bindings.FundingCreated_set_signature(this.ptr, val); @@ -81,9 +82,10 @@ public class FundingCreated extends CommonBase { /** * Constructs a new FundingCreated given each field */ - public static FundingCreated constructor_new(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) { + public static FundingCreated of(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) { long ret = bindings.FundingCreated_new(temporary_channel_id_arg, funding_txid_arg, funding_output_index_arg, signature_arg); - FundingCreated ret_hu_conv = new FundingCreated(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + FundingCreated ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingCreated(null, ret); } ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } @@ -93,7 +95,8 @@ public class FundingCreated extends CommonBase { */ public FundingCreated clone() { long ret = bindings.FundingCreated_clone(this.ptr); - FundingCreated ret_hu_conv = new FundingCreated(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + FundingCreated ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingCreated(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -109,8 +112,9 @@ public class FundingCreated extends CommonBase { /** * Read a FundingCreated from a byte array, created by FundingCreated_write */ - public static Result_FundingCreatedDecodeErrorZ constructor_read(byte[] ser) { + public static Result_FundingCreatedDecodeErrorZ read(byte[] ser) { long ret = bindings.FundingCreated_read(ser); + if (ret >= 0 && ret <= 4096) { return null; } Result_FundingCreatedDecodeErrorZ ret_hu_conv = Result_FundingCreatedDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }