[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / PaymentPurpose.cs
index 535e752628433909a84b1703c710e161bda6f09e..ebd6168e875bd450df98150a20a9d1eb7cb42984 100644 (file)
@@ -35,7 +35,7 @@ public class PaymentPurpose : CommonBase {
                 * [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
                 * [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
                 */
-               public Option_PaymentPreimageZ payment_preimage;
+               public Option_ThirtyTwoBytesZ payment_preimage;
                /**
                 * The \"payment secret\". This authenticates the sender to the recipient, preventing a
                 * number of deanonymization attacks during the routing process.
@@ -51,17 +51,21 @@ public class PaymentPurpose : CommonBase {
                public byte[] payment_secret;
                internal PaymentPurpose_InvoicePayment(long ptr) : base(null, ptr) {
                        long payment_preimage = bindings.LDKPaymentPurpose_InvoicePayment_get_payment_preimage(ptr);
-                       org.ldk.structs.Option_PaymentPreimageZ payment_preimage_hu_conv = org.ldk.structs.Option_PaymentPreimageZ.constr_from_ptr(payment_preimage);
+                       org.ldk.structs.Option_ThirtyTwoBytesZ payment_preimage_hu_conv = org.ldk.structs.Option_ThirtyTwoBytesZ.constr_from_ptr(payment_preimage);
                        if (payment_preimage_hu_conv != null) { payment_preimage_hu_conv.ptrs_to.AddLast(this); };
                        this.payment_preimage = payment_preimage_hu_conv;
-                       this.payment_secret = bindings.LDKPaymentPurpose_InvoicePayment_get_payment_secret(ptr);
+                       long payment_secret = bindings.LDKPaymentPurpose_InvoicePayment_get_payment_secret(ptr);
+                       byte[] payment_secret_conv = InternalUtils.decodeUint8Array(payment_secret);
+                       this.payment_secret = payment_secret_conv;
                }
        }
        /** A PaymentPurpose of type SpontaneousPayment */
        public class PaymentPurpose_SpontaneousPayment : PaymentPurpose {
                public byte[] spontaneous_payment;
                internal PaymentPurpose_SpontaneousPayment(long ptr) : base(null, ptr) {
-                       this.spontaneous_payment = bindings.LDKPaymentPurpose_SpontaneousPayment_get_spontaneous_payment(ptr);
+                       long spontaneous_payment = bindings.LDKPaymentPurpose_SpontaneousPayment_get_spontaneous_payment(ptr);
+                       byte[] spontaneous_payment_conv = InternalUtils.decodeUint8Array(spontaneous_payment);
+                       this.spontaneous_payment = spontaneous_payment_conv;
                }
        }
        internal long clone_ptr() {
@@ -85,8 +89,8 @@ public class PaymentPurpose : CommonBase {
        /**
         * Utility method to constructs a new InvoicePayment-variant PaymentPurpose
         */
-       public static PaymentPurpose invoice_payment(org.ldk.structs.Option_PaymentPreimageZ payment_preimage, byte[] payment_secret) {
-               long ret = bindings.PaymentPurpose_invoice_payment(payment_preimage.ptr, InternalUtils.check_arr_len(payment_secret, 32));
+       public static PaymentPurpose invoice_payment(org.ldk.structs.Option_ThirtyTwoBytesZ payment_preimage, byte[] payment_secret) {
+               long ret = bindings.PaymentPurpose_invoice_payment(payment_preimage.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(payment_secret, 32)));
                GC.KeepAlive(payment_preimage);
                GC.KeepAlive(payment_secret);
                if (ret >= 0 && ret <= 4096) { return null; }
@@ -100,7 +104,7 @@ public class PaymentPurpose : CommonBase {
         * Utility method to constructs a new SpontaneousPayment-variant PaymentPurpose
         */
        public static PaymentPurpose spontaneous_payment(byte[] a) {
-               long ret = bindings.PaymentPurpose_spontaneous_payment(InternalUtils.check_arr_len(a, 32));
+               long ret = bindings.PaymentPurpose_spontaneous_payment(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(a, 32)));
                GC.KeepAlive(a);
                if (ret >= 0 && ret <= 4096) { return null; }
                org.ldk.structs.PaymentPurpose ret_hu_conv = org.ldk.structs.PaymentPurpose.constr_from_ptr(ret);
@@ -127,16 +131,18 @@ public class PaymentPurpose : CommonBase {
         * Serialize the PaymentPurpose object into a byte array which can be read by PaymentPurpose_read
         */
        public byte[] write() {
-               byte[] ret = bindings.PaymentPurpose_write(this.ptr);
+               long ret = bindings.PaymentPurpose_write(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * Read a PaymentPurpose from a byte array, created by PaymentPurpose_write
         */
        public static Result_PaymentPurposeDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.PaymentPurpose_read(ser);
+               long ret = bindings.PaymentPurpose_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_PaymentPurposeDecodeErrorZ ret_hu_conv = Result_PaymentPurposeDecodeErrorZ.constr_from_ptr(ret);