X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPayeePubKey.java;h=3f1ef3223a9e99cc6703536af232a8fc9792509a;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=b6ea267f9c8c82e200f687db201c2715c572a3b1;hpb=7d6be8a5ef72a4ebfe07660cce55f43f6cc30b80;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PayeePubKey.java b/src/main/java/org/ldk/structs/PayeePubKey.java index b6ea267f..3f1ef322 100644 --- a/src/main/java/org/ldk/structs/PayeePubKey.java +++ b/src/main/java/org/ldk/structs/PayeePubKey.java @@ -19,13 +19,38 @@ public class PayeePubKey extends CommonBase { if (ptr != 0) { bindings.PayeePubKey_free(ptr); } } + public byte[] get_a() { + byte[] ret = bindings.PayeePubKey_get_a(this.ptr); + return ret; + } + + public void set_a(byte[] val) { + bindings.PayeePubKey_set_a(this.ptr, InternalUtils.check_arr_len(val, 33)); + } + + /** + * Constructs a new PayeePubKey given each field + */ + public static PayeePubKey of(byte[] a_arg) { + long ret = bindings.PayeePubKey_new(InternalUtils.check_arr_len(a_arg, 33)); + if (ret >= 0 && ret <= 4096) { return null; } + PayeePubKey ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new PayeePubKey(null, ret); } + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + long clone_ptr() { + long ret = bindings.PayeePubKey_clone_ptr(this.ptr); + return ret; + } + /** * Creates a copy of the PayeePubKey */ public PayeePubKey clone() { long ret = bindings.PayeePubKey_clone(this.ptr); - if (ret < 1024) { return null; } - PayeePubKey ret_hu_conv = new PayeePubKey(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + PayeePubKey ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new PayeePubKey(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; }