X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FCounterpartyChannelTransactionParameters.cs;fp=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FCounterpartyChannelTransactionParameters.cs;h=85da52f9a799f70c395269c047c2f3e2bc708bab;hb=8de7213fbf663ff60322896282dad51e8ab2f001;hp=4b00e21436a806a860ed9a2e21527c9f7303f440;hpb=afc50e5d491a11364849383b75a8f939df703bac;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/CounterpartyChannelTransactionParameters.cs b/c_sharp/src/org/ldk/structs/CounterpartyChannelTransactionParameters.cs index 4b00e214..85da52f9 100644 --- a/c_sharp/src/org/ldk/structs/CounterpartyChannelTransactionParameters.cs +++ b/c_sharp/src/org/ldk/structs/CounterpartyChannelTransactionParameters.cs @@ -87,6 +87,18 @@ public class CounterpartyChannelTransactionParameters : CommonBase { return ret_hu_conv; } + /** + * Generates a non-cryptographic 64-bit hash of the CounterpartyChannelTransactionParameters. + */ + public long hash() { + long ret = bindings.CounterpartyChannelTransactionParameters_hash(this.ptr); + GC.KeepAlive(this); + return ret; + } + + public override int GetHashCode() { + return (int)this.hash(); + } /** * Checks if two CounterpartyChannelTransactionParameterss contain equal inner contents. * This ignores pointers and is_owned flags and looks at the values in fields. @@ -108,16 +120,18 @@ public class CounterpartyChannelTransactionParameters : CommonBase { * Serialize the CounterpartyChannelTransactionParameters object into a byte array which can be read by CounterpartyChannelTransactionParameters_read */ public byte[] write() { - byte[] ret = bindings.CounterpartyChannelTransactionParameters_write(this.ptr); + long ret = bindings.CounterpartyChannelTransactionParameters_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 CounterpartyChannelTransactionParameters from a byte array, created by CounterpartyChannelTransactionParameters_write */ public static Result_CounterpartyChannelTransactionParametersDecodeErrorZ read(byte[] ser) { - long ret = bindings.CounterpartyChannelTransactionParameters_read(ser); + long ret = bindings.CounterpartyChannelTransactionParameters_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_CounterpartyChannelTransactionParametersDecodeErrorZ ret_hu_conv = Result_CounterpartyChannelTransactionParametersDecodeErrorZ.constr_from_ptr(ret);