[C#] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / c_sharp / src / org / ldk / structs / ErrorMessage.cs
index fe33ec1925a93b206f50f03d29362b674ed42b3a..c2f4971f13c96663eb04f8dcd7bb504791cb94b0 100644 (file)
@@ -23,12 +23,13 @@ public class ErrorMessage : CommonBase {
         * All-0s indicates a general error unrelated to a specific channel, after which all channels
         * with the sending peer should be closed.
         */
-       public byte[] get_channel_id() {
+       public ChannelId get_channel_id() {
                long ret = bindings.ErrorMessage_get_channel_id(this.ptr);
                GC.KeepAlive(this);
                if (ret >= 0 && ret <= 4096) { return null; }
-               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
-               return ret_conv;
+               org.ldk.structs.ChannelId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelId(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
        }
 
        /**
@@ -37,10 +38,11 @@ public class ErrorMessage : CommonBase {
         * All-0s indicates a general error unrelated to a specific channel, after which all channels
         * with the sending peer should be closed.
         */
-       public void set_channel_id(byte[] val) {
-               bindings.ErrorMessage_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
+       public void set_channel_id(org.ldk.structs.ChannelId val) {
+               bindings.ErrorMessage_set_channel_id(this.ptr, val.ptr);
                GC.KeepAlive(this);
                GC.KeepAlive(val);
+               if (this != null) { this.ptrs_to.AddLast(val); };
        }
 
        /**
@@ -74,13 +76,14 @@ public class ErrorMessage : CommonBase {
        /**
         * Constructs a new ErrorMessage given each field
         */
-       public static ErrorMessage of(byte[] channel_id_arg, string data_arg) {
-               long ret = bindings.ErrorMessage_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), InternalUtils.encodeString(data_arg));
+       public static ErrorMessage of(org.ldk.structs.ChannelId channel_id_arg, string data_arg) {
+               long ret = bindings.ErrorMessage_new(channel_id_arg.ptr, InternalUtils.encodeString(data_arg));
                GC.KeepAlive(channel_id_arg);
                GC.KeepAlive(data_arg);
                if (ret >= 0 && ret <= 4096) { return null; }
                org.ldk.structs.ErrorMessage ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ErrorMessage(null, ret); }
                if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(channel_id_arg); };
                return ret_hu_conv;
        }
 
@@ -120,7 +123,7 @@ public class ErrorMessage : CommonBase {
         * Two objects with NULL inner values will be considered "equal" here.
         */
        public bool eq(org.ldk.structs.ErrorMessage b) {
-               bool ret = bindings.ErrorMessage_eq(this.ptr, b == null ? 0 : b.ptr);
+               bool ret = bindings.ErrorMessage_eq(this.ptr, b.ptr);
                GC.KeepAlive(this);
                GC.KeepAlive(b);
                if (this != null) { this.ptrs_to.AddLast(b); };