[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ReplyChannelRange.cs
index e4f97698df2d0b1bc75d03070910c06658aef4a2..6b2ec479107bd7f589afa5e5fda9139b833ac764 100644 (file)
@@ -7,13 +7,17 @@ namespace org { namespace ldk { namespace structs {
 
 
 /**
- * A reply_channel_range message is a reply to a query_channel_range
- * message. Multiple reply_channel_range messages can be sent in reply
- * to a single query_channel_range message. The query recipient makes a
+ * A [`reply_channel_range`] message is a reply to a [`QueryChannelRange`]
+ * message.
+ * 
+ * Multiple `reply_channel_range` messages can be sent in reply
+ * to a single [`QueryChannelRange`] message. The query recipient makes a
  * best effort to respond based on their local network view which may
- * not be a perfect view of the network. The short_channel_ids in the
- * reply are encoded. We only support encoding_type=0 uncompressed
- * serialization and do not support encoding_type=1 zlib serialization.
+ * not be a perfect view of the network. The `short_channel_id`s in the
+ * reply are encoded. We only support `encoding_type=0` uncompressed
+ * serialization and do not support `encoding_type=1` zlib serialization.
+ * 
+ * [`reply_channel_range`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-query_channel_range-and-reply_channel_range-messages
  */
 public class ReplyChannelRange : CommonBase {
        internal ReplyChannelRange(object _dummy, long ptr) : base(ptr) { }
@@ -25,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);
        }
@@ -94,21 +100,23 @@ public class ReplyChannelRange : CommonBase {
        }
 
        /**
-        * The short_channel_ids in the channel range
+        * The `short_channel_id`s in the channel range
         * 
         * 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_ids in the channel range
+        * 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);
        }
@@ -117,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);
@@ -168,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);
@@ -179,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;
        }
 
 }