]> git.bitcoin.ninja Git - ldk-java/blobdiff - c_sharp/src/org/ldk/structs/TxRemoveInput.cs
[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / TxRemoveInput.cs
index 6855aa259d82792e557def2f0e7dc9369d1e8dfe..18d4b5504b154052ab6f8ec076f7bb773f0e0953 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; }
@@ -82,6 +84,18 @@ public class TxRemoveInput : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Generates a non-cryptographic 64-bit hash of the TxRemoveInput.
+        */
+       public long hash() {
+               long ret = bindings.TxRemoveInput_hash(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       public override int GetHashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two TxRemoveInputs contain equal inner contents.
         * This ignores pointers and is_owned flags and looks at the values in fields.
@@ -103,16 +117,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);