X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FReplyChannelRange.cs;h=6b2ec479107bd7f589afa5e5fda9139b833ac764;hb=8de7213fbf663ff60322896282dad51e8ab2f001;hp=dc2b90739b404f77972b90809fa9a78cc156a7c7;hpb=7811d2191440c55034e1abfbf3be442d4b25481b;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/ReplyChannelRange.cs b/c_sharp/src/org/ldk/structs/ReplyChannelRange.cs index dc2b9073..6b2ec479 100644 --- a/c_sharp/src/org/ldk/structs/ReplyChannelRange.cs +++ b/c_sharp/src/org/ldk/structs/ReplyChannelRange.cs @@ -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; } }