X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FClosingSignedFeeRange.cs;h=72f5aee8d9a0cb9f4b7b627338a105a9145fb092;hb=3d1f246d05172683acd3b81836de4e4e9f0c1afd;hp=dcc099e778db620eb613462951d679be3bcfd554;hpb=8aa8a96fc6d8fcdd3fbb419b4b4c12482af14938;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs b/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs index dcc099e7..72f5aee8 100644 --- a/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs +++ b/c_sharp/src/org/ldk/structs/ClosingSignedFeeRange.cs @@ -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);