X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FTxComplete.cs;h=bcd8814cc3a80893e9e1cf9f4eadabad3b80da04;hp=3cc12feb1554378e75ffcd6f77eb85aa238efda4;hb=8de7213fbf663ff60322896282dad51e8ab2f001;hpb=afc50e5d491a11364849383b75a8f939df703bac diff --git a/c_sharp/src/org/ldk/structs/TxComplete.cs b/c_sharp/src/org/ldk/structs/TxComplete.cs index 3cc12feb..bcd8814c 100644 --- a/c_sharp/src/org/ldk/structs/TxComplete.cs +++ b/c_sharp/src/org/ldk/structs/TxComplete.cs @@ -20,16 +20,18 @@ public class TxComplete : CommonBase { * The channel ID */ public byte[] get_channel_id() { - byte[] ret = bindings.TxComplete_get_channel_id(this.ptr); + long ret = bindings.TxComplete_get_channel_id(this.ptr); GC.KeepAlive(this); - return ret; + if (ret >= 0 && ret <= 4096) { return null; } + byte[] ret_conv = InternalUtils.decodeUint8Array(ret); + return ret_conv; } /** * The channel ID */ public void set_channel_id(byte[] val) { - bindings.TxComplete_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); + bindings.TxComplete_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32))); GC.KeepAlive(this); GC.KeepAlive(val); } @@ -38,7 +40,7 @@ public class TxComplete : CommonBase { * Constructs a new TxComplete given each field */ public static TxComplete of(byte[] channel_id_arg) { - long ret = bindings.TxComplete_new(InternalUtils.check_arr_len(channel_id_arg, 32)); + long ret = bindings.TxComplete_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32))); GC.KeepAlive(channel_id_arg); if (ret >= 0 && ret <= 4096) { return null; } org.ldk.structs.TxComplete ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.TxComplete(null, ret); } @@ -85,16 +87,18 @@ public class TxComplete : CommonBase { * Serialize the TxComplete object into a byte array which can be read by TxComplete_read */ public byte[] write() { - byte[] ret = bindings.TxComplete_write(this.ptr); + long ret = bindings.TxComplete_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 TxComplete from a byte array, created by TxComplete_write */ public static Result_TxCompleteDecodeErrorZ read(byte[] ser) { - long ret = bindings.TxComplete_read(ser); + long ret = bindings.TxComplete_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);