X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FClosingSignedFeeRange.cs;h=72f5aee8d9a0cb9f4b7b627338a105a9145fb092;hb=dbcef74f9feb03aa6d8d0ee07854740cac926f6b;hp=571e81507cfed46eb595c324e858e4463c428a49;hpb=c6777737ea14e7814b0fa7d6fe16536f31d4a82b;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs b/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs index 571e8150..72f5aee8 100644 --- a/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs +++ b/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs @@ -89,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. @@ -110,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);