[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / SpendableOutputDescriptor.cs
index f349e6f8c46d4ad0f971a42c546582a36fbed8bf..dc8ca432fe2861217e25ea90f909aa10284bf0a9 100644 (file)
@@ -14,7 +14,7 @@ namespace org { namespace ldk { namespace structs {
  * outpoint describing which `txid` and output `index` is available, the full output which exists
  * at that `txid`/`index`, and any keys or other information required to sign.
  * 
- * [`SpendableOutputs`]: crate::util::events::Event::SpendableOutputs
+ * [`SpendableOutputs`]: crate::events::Event::SpendableOutputs
  */
 public class SpendableOutputDescriptor : CommonBase {
        protected SpendableOutputDescriptor(object _dummy, long ptr) : base(ptr) { }
@@ -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);