[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ClosingSignedFeeRange.cs
index dcc099e778db620eb613462951d679be3bcfd554..72f5aee8d9a0cb9f4b7b627338a105a9145fb092 100644 (file)
@@ -8,6 +8,7 @@ namespace org { namespace ldk { namespace structs {
 
 /**
  * The minimum and maximum fees which the sender is willing to place on the closing transaction.
+ * 
  * This is provided in [`ClosingSigned`] by both sides to indicate the fee range they are willing
  * to use.
  */
@@ -88,6 +89,18 @@ public class ClosingSignedFeeRange : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Generates a non-cryptographic 64-bit hash of the ClosingSignedFeeRange.
+        */
+       public long hash() {
+               long ret = bindings.ClosingSignedFeeRange_hash(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       public override int GetHashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two ClosingSignedFeeRanges contain equal inner contents.
         * This ignores pointers and is_owned flags and looks at the values in fields.
@@ -109,16 +122,18 @@ public class ClosingSignedFeeRange : CommonBase {
         * Serialize the ClosingSignedFeeRange object into a byte array which can be read by ClosingSignedFeeRange_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ClosingSignedFeeRange_write(this.ptr);
+               long ret = bindings.ClosingSignedFeeRange_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 ClosingSignedFeeRange from a byte array, created by ClosingSignedFeeRange_write
         */
        public static Result_ClosingSignedFeeRangeDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ClosingSignedFeeRange_read(ser);
+               long ret = bindings.ClosingSignedFeeRange_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ClosingSignedFeeRangeDecodeErrorZ ret_hu_conv = Result_ClosingSignedFeeRangeDecodeErrorZ.constr_from_ptr(ret);