[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / SpendableOutputDescriptor.cs
index 54bdbb22be36c747e4999119f7cacbf0c047ea67..dc8ca432fe2861217e25ea90f909aa10284bf0a9 100644 (file)
@@ -131,6 +131,18 @@ public class SpendableOutputDescriptor : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Generates a non-cryptographic 64-bit hash of the SpendableOutputDescriptor.
+        */
+       public long hash() {
+               long ret = bindings.SpendableOutputDescriptor_hash(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       public override int GetHashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two SpendableOutputDescriptors contain equal inner contents.
         * This ignores pointers and is_owned flags and looks at the values in fields.
@@ -150,16 +162,18 @@ public class SpendableOutputDescriptor : CommonBase {
         * Serialize the SpendableOutputDescriptor object into a byte array which can be read by SpendableOutputDescriptor_read
         */
        public byte[] write() {
-               byte[] ret = bindings.SpendableOutputDescriptor_write(this.ptr);
+               long ret = bindings.SpendableOutputDescriptor_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 SpendableOutputDescriptor from a byte array, created by SpendableOutputDescriptor_write
         */
        public static Result_SpendableOutputDescriptorDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.SpendableOutputDescriptor_read(ser);
+               long ret = bindings.SpendableOutputDescriptor_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_SpendableOutputDescriptorDecodeErrorZ ret_hu_conv = Result_SpendableOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);