X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FFundingLocked.java;h=4aa45f9874808bc8aec25ce1f98a60ec3b6cc014;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=0b8188c1fcf060fc7a0aa40ac8d033f851b9674d;hpb=1b870a3ffab1c0024411e30102bc6d198300f095;p=ldk-java diff --git a/src/main/java/org/ldk/structs/FundingLocked.java b/src/main/java/org/ldk/structs/FundingLocked.java index 0b8188c1..4aa45f98 100644 --- a/src/main/java/org/ldk/structs/FundingLocked.java +++ b/src/main/java/org/ldk/structs/FundingLocked.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; /** @@ -30,7 +31,7 @@ public class FundingLocked extends CommonBase { * The channel ID */ public void set_channel_id(byte[] val) { - bindings.FundingLocked_set_channel_id(this.ptr, val); + bindings.FundingLocked_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); } /** @@ -45,25 +46,32 @@ public class FundingLocked extends CommonBase { * The per-commitment point of the second commitment transaction */ public void set_next_per_commitment_point(byte[] val) { - bindings.FundingLocked_set_next_per_commitment_point(this.ptr, val); + bindings.FundingLocked_set_next_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33)); } /** * Constructs a new FundingLocked given each field */ - public static FundingLocked constructor_new(byte[] channel_id_arg, byte[] next_per_commitment_point_arg) { - long ret = bindings.FundingLocked_new(channel_id_arg, next_per_commitment_point_arg); - FundingLocked ret_hu_conv = new FundingLocked(null, ret); + public static FundingLocked of(byte[] channel_id_arg, byte[] next_per_commitment_point_arg) { + long ret = bindings.FundingLocked_new(InternalUtils.check_arr_len(channel_id_arg, 32), InternalUtils.check_arr_len(next_per_commitment_point_arg, 33)); + if (ret >= 0 && ret <= 4096) { return null; } + FundingLocked ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingLocked(null, ret); } ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } + long clone_ptr() { + long ret = bindings.FundingLocked_clone_ptr(this.ptr); + return ret; + } + /** * Creates a copy of the FundingLocked */ public FundingLocked clone() { long ret = bindings.FundingLocked_clone(this.ptr); - FundingLocked ret_hu_conv = new FundingLocked(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + FundingLocked ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingLocked(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -79,8 +87,9 @@ public class FundingLocked extends CommonBase { /** * Read a FundingLocked from a byte array, created by FundingLocked_write */ - public static Result_FundingLockedDecodeErrorZ constructor_read(byte[] ser) { + public static Result_FundingLockedDecodeErrorZ read(byte[] ser) { long ret = bindings.FundingLocked_read(ser); + if (ret >= 0 && ret <= 4096) { return null; } Result_FundingLockedDecodeErrorZ ret_hu_conv = Result_FundingLockedDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }