[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ReplyShortChannelIdsEnd.cs
index 4fb74ed589fcb8721f11d2f624e3dee10fdbc8b1..2f7643136800d8e17e2247ed87396c0f927001a7 100644 (file)
@@ -24,16 +24,18 @@ public class ReplyShortChannelIdsEnd : CommonBase {
         * The genesis hash of the blockchain that was queried
         */
        public byte[] get_chain_hash() {
-               byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr);
+               long ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * The genesis hash of the blockchain that was queried
         */
        public void set_chain_hash(byte[] val) {
-               bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -62,7 +64,7 @@ public class ReplyShortChannelIdsEnd : CommonBase {
         * Constructs a new ReplyShortChannelIdsEnd given each field
         */
        public static ReplyShortChannelIdsEnd of(byte[] chain_hash_arg, bool full_information_arg) {
-               long ret = bindings.ReplyShortChannelIdsEnd_new(InternalUtils.check_arr_len(chain_hash_arg, 32), full_information_arg);
+               long ret = bindings.ReplyShortChannelIdsEnd_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(chain_hash_arg, 32)), full_information_arg);
                GC.KeepAlive(chain_hash_arg);
                GC.KeepAlive(full_information_arg);
                if (ret >= 0 && ret <= 4096) { return null; }
@@ -110,16 +112,18 @@ public class ReplyShortChannelIdsEnd : CommonBase {
         * Serialize the ReplyShortChannelIdsEnd object into a byte array which can be read by ReplyShortChannelIdsEnd_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ReplyShortChannelIdsEnd_write(this.ptr);
+               long ret = bindings.ReplyShortChannelIdsEnd_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 ReplyShortChannelIdsEnd from a byte array, created by ReplyShortChannelIdsEnd_write
         */
        public static Result_ReplyShortChannelIdsEndDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ReplyShortChannelIdsEnd_read(ser);
+               long ret = bindings.ReplyShortChannelIdsEnd_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ReplyShortChannelIdsEndDecodeErrorZ ret_hu_conv = Result_ReplyShortChannelIdsEndDecodeErrorZ.constr_from_ptr(ret);