X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FTxAddInput.cs;h=8bc30bba78ef8779d1869e903168836822d706cc;hb=8de7213fbf663ff60322896282dad51e8ab2f001;hp=6ee743b12b30fc30c4b43ff04519d4a588d6e257;hpb=afc50e5d491a11364849383b75a8f939df703bac;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/TxAddInput.cs b/c_sharp/src/org/ldk/structs/TxAddInput.cs index 6ee743b1..8bc30bba 100644 --- a/c_sharp/src/org/ldk/structs/TxAddInput.cs +++ b/c_sharp/src/org/ldk/structs/TxAddInput.cs @@ -19,16 +19,18 @@ public class TxAddInput : CommonBase { * The channel ID */ public byte[] get_channel_id() { - byte[] ret = bindings.TxAddInput_get_channel_id(this.ptr); + long ret = bindings.TxAddInput_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.TxAddInput_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); + bindings.TxAddInput_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32))); GC.KeepAlive(this); GC.KeepAlive(val); } @@ -117,7 +119,7 @@ public class TxAddInput : CommonBase { * Constructs a new TxAddInput given each field */ public static TxAddInput of(byte[] channel_id_arg, long serial_id_arg, org.ldk.structs.TransactionU16LenLimited prevtx_arg, int prevtx_out_arg, int sequence_arg) { - long ret = bindings.TxAddInput_new(InternalUtils.check_arr_len(channel_id_arg, 32), serial_id_arg, prevtx_arg == null ? 0 : prevtx_arg.ptr, prevtx_out_arg, sequence_arg); + long ret = bindings.TxAddInput_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), serial_id_arg, prevtx_arg == null ? 0 : prevtx_arg.ptr, prevtx_out_arg, sequence_arg); GC.KeepAlive(channel_id_arg); GC.KeepAlive(serial_id_arg); GC.KeepAlive(prevtx_arg); @@ -169,16 +171,18 @@ public class TxAddInput : CommonBase { * Serialize the TxAddInput object into a byte array which can be read by TxAddInput_read */ public byte[] write() { - byte[] ret = bindings.TxAddInput_write(this.ptr); + long ret = bindings.TxAddInput_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 TxAddInput from a byte array, created by TxAddInput_write */ public static Result_TxAddInputDecodeErrorZ read(byte[] ser) { - long ret = bindings.TxAddInput_read(ser); + long ret = bindings.TxAddInput_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_TxAddInputDecodeErrorZ ret_hu_conv = Result_TxAddInputDecodeErrorZ.constr_from_ptr(ret);