[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / TxRemoveInput.cs
index 6855aa259d82792e557def2f0e7dc9369d1e8dfe..3ee52bdcdd1411b719a640703707420a393789c5 100644 (file)
@@ -19,16 +19,18 @@ public class TxRemoveInput : CommonBase {
         * The channel ID
         */
        public byte[] get_channel_id() {
-               byte[] ret = bindings.TxRemoveInput_get_channel_id(this.ptr);
+               long ret = bindings.TxRemoveInput_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.TxRemoveInput_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.TxRemoveInput_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -55,7 +57,7 @@ public class TxRemoveInput : CommonBase {
         * Constructs a new TxRemoveInput given each field
         */
        public static TxRemoveInput of(byte[] channel_id_arg, long serial_id_arg) {
-               long ret = bindings.TxRemoveInput_new(InternalUtils.check_arr_len(channel_id_arg, 32), serial_id_arg);
+               long ret = bindings.TxRemoveInput_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), serial_id_arg);
                GC.KeepAlive(channel_id_arg);
                GC.KeepAlive(serial_id_arg);
                if (ret >= 0 && ret <= 4096) { return null; }
@@ -103,16 +105,18 @@ public class TxRemoveInput : CommonBase {
         * Serialize the TxRemoveInput object into a byte array which can be read by TxRemoveInput_read
         */
        public byte[] write() {
-               byte[] ret = bindings.TxRemoveInput_write(this.ptr);
+               long ret = bindings.TxRemoveInput_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 TxRemoveInput from a byte array, created by TxRemoveInput_write
         */
        public static Result_TxRemoveInputDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.TxRemoveInput_read(ser);
+               long ret = bindings.TxRemoveInput_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_TxRemoveInputDecodeErrorZ ret_hu_conv = Result_TxRemoveInputDecodeErrorZ.constr_from_ptr(ret);