[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ReplyChannelRange.cs
index dc2b90739b404f77972b90809fa9a78cc156a7c7..6b2ec479107bd7f589afa5e5fda9139b833ac764 100644 (file)
@@ -29,16 +29,18 @@ public class ReplyChannelRange : CommonBase {
         * The genesis hash of the blockchain being queried
         */
        public byte[] get_chain_hash() {
-               byte[] ret = bindings.ReplyChannelRange_get_chain_hash(this.ptr);
+               long ret = bindings.ReplyChannelRange_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 being queried
         */
        public void set_chain_hash(byte[] val) {
-               bindings.ReplyChannelRange_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ReplyChannelRange_set_chain_hash(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -103,16 +105,18 @@ public class ReplyChannelRange : CommonBase {
         * Returns a copy of the field.
         */
        public long[] get_short_channel_ids() {
-               long[] ret = bindings.ReplyChannelRange_get_short_channel_ids(this.ptr);
+               long ret = bindings.ReplyChannelRange_get_short_channel_ids(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               long[] ret_conv = InternalUtils.decodeUint64Array(ret);
+               return ret_conv;
        }
 
        /**
         * The `short_channel_id`s in the channel range
         */
        public void set_short_channel_ids(long[] val) {
-               bindings.ReplyChannelRange_set_short_channel_ids(this.ptr, val);
+               bindings.ReplyChannelRange_set_short_channel_ids(this.ptr, InternalUtils.encodeUint64Array(val));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -121,7 +125,7 @@ public class ReplyChannelRange : CommonBase {
         * Constructs a new ReplyChannelRange given each field
         */
        public static ReplyChannelRange of(byte[] chain_hash_arg, int first_blocknum_arg, int number_of_blocks_arg, bool sync_complete_arg, long[] short_channel_ids_arg) {
-               long ret = bindings.ReplyChannelRange_new(InternalUtils.check_arr_len(chain_hash_arg, 32), first_blocknum_arg, number_of_blocks_arg, sync_complete_arg, short_channel_ids_arg);
+               long ret = bindings.ReplyChannelRange_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(chain_hash_arg, 32)), first_blocknum_arg, number_of_blocks_arg, sync_complete_arg, InternalUtils.encodeUint64Array(short_channel_ids_arg));
                GC.KeepAlive(chain_hash_arg);
                GC.KeepAlive(first_blocknum_arg);
                GC.KeepAlive(number_of_blocks_arg);
@@ -172,7 +176,7 @@ public class ReplyChannelRange : CommonBase {
         * Read a ReplyChannelRange from a byte array, created by ReplyChannelRange_write
         */
        public static Result_ReplyChannelRangeDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ReplyChannelRange_read(ser);
+               long ret = bindings.ReplyChannelRange_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ReplyChannelRangeDecodeErrorZ ret_hu_conv = Result_ReplyChannelRangeDecodeErrorZ.constr_from_ptr(ret);
@@ -183,9 +187,11 @@ public class ReplyChannelRange : CommonBase {
         * Serialize the ReplyChannelRange object into a byte array which can be read by ReplyChannelRange_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ReplyChannelRange_write(this.ptr);
+               long ret = bindings.ReplyChannelRange_write(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
 }