[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ChannelReestablish.cs
index 9218cd62779c0bffe66bd6fa1f0be147204621b6..b070cceb1eff6e306e6d8be49d2ae48435fa2343 100644 (file)
@@ -21,16 +21,18 @@ public class ChannelReestablish : CommonBase {
         * The channel ID
         */
        public byte[] get_channel_id() {
-               byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
+               long ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * The channel ID
         */
        public void set_channel_id(byte[] val) {
-               bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ChannelReestablish_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -76,9 +78,11 @@ public class ChannelReestablish : CommonBase {
         * belonging to the recipient
         */
        public byte[] get_your_last_per_commitment_secret() {
-               byte[] ret = bindings.ChannelReestablish_get_your_last_per_commitment_secret(this.ptr);
+               long ret = bindings.ChannelReestablish_get_your_last_per_commitment_secret(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
@@ -86,7 +90,7 @@ public class ChannelReestablish : CommonBase {
         * belonging to the recipient
         */
        public void set_your_last_per_commitment_secret(byte[] val) {
-               bindings.ChannelReestablish_set_your_last_per_commitment_secret(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ChannelReestablish_set_your_last_per_commitment_secret(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -95,16 +99,18 @@ public class ChannelReestablish : CommonBase {
         * The sender's per-commitment point for their current commitment transaction
         */
        public byte[] get_my_current_per_commitment_point() {
-               byte[] ret = bindings.ChannelReestablish_get_my_current_per_commitment_point(this.ptr);
+               long ret = bindings.ChannelReestablish_get_my_current_per_commitment_point(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * The sender's per-commitment point for their current commitment transaction
         */
        public void set_my_current_per_commitment_point(byte[] val) {
-               bindings.ChannelReestablish_set_my_current_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33));
+               bindings.ChannelReestablish_set_my_current_per_commitment_point(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 33)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -112,11 +118,11 @@ public class ChannelReestablish : CommonBase {
        /**
         * The next funding transaction ID
         */
-       public Option_TxidZ get_next_funding_txid() {
+       public Option_ThirtyTwoBytesZ get_next_funding_txid() {
                long ret = bindings.ChannelReestablish_get_next_funding_txid(this.ptr);
                GC.KeepAlive(this);
                if (ret >= 0 && ret <= 4096) { return null; }
-               org.ldk.structs.Option_TxidZ ret_hu_conv = org.ldk.structs.Option_TxidZ.constr_from_ptr(ret);
+               org.ldk.structs.Option_ThirtyTwoBytesZ ret_hu_conv = org.ldk.structs.Option_ThirtyTwoBytesZ.constr_from_ptr(ret);
                if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
                return ret_hu_conv;
        }
@@ -124,7 +130,7 @@ public class ChannelReestablish : CommonBase {
        /**
         * The next funding transaction ID
         */
-       public void set_next_funding_txid(org.ldk.structs.Option_TxidZ val) {
+       public void set_next_funding_txid(org.ldk.structs.Option_ThirtyTwoBytesZ val) {
                bindings.ChannelReestablish_set_next_funding_txid(this.ptr, val.ptr);
                GC.KeepAlive(this);
                GC.KeepAlive(val);
@@ -134,8 +140,8 @@ public class ChannelReestablish : CommonBase {
        /**
         * Constructs a new ChannelReestablish given each field
         */
-       public static ChannelReestablish of(byte[] channel_id_arg, long next_local_commitment_number_arg, long next_remote_commitment_number_arg, byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg, org.ldk.structs.Option_TxidZ next_funding_txid_arg) {
-               long ret = bindings.ChannelReestablish_new(InternalUtils.check_arr_len(channel_id_arg, 32), next_local_commitment_number_arg, next_remote_commitment_number_arg, InternalUtils.check_arr_len(your_last_per_commitment_secret_arg, 32), InternalUtils.check_arr_len(my_current_per_commitment_point_arg, 33), next_funding_txid_arg.ptr);
+       public static ChannelReestablish of(byte[] channel_id_arg, long next_local_commitment_number_arg, long next_remote_commitment_number_arg, byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg, org.ldk.structs.Option_ThirtyTwoBytesZ next_funding_txid_arg) {
+               long ret = bindings.ChannelReestablish_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), next_local_commitment_number_arg, next_remote_commitment_number_arg, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(your_last_per_commitment_secret_arg, 32)), InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(my_current_per_commitment_point_arg, 33)), next_funding_txid_arg.ptr);
                GC.KeepAlive(channel_id_arg);
                GC.KeepAlive(next_local_commitment_number_arg);
                GC.KeepAlive(next_remote_commitment_number_arg);
@@ -188,16 +194,18 @@ public class ChannelReestablish : CommonBase {
         * Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ChannelReestablish_write(this.ptr);
+               long ret = bindings.ChannelReestablish_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 ChannelReestablish from a byte array, created by ChannelReestablish_write
         */
        public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ChannelReestablish_read(ser);
+               long ret = bindings.ChannelReestablish_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);