X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FSpendableOutputDescriptor.cs;h=dc8ca432fe2861217e25ea90f909aa10284bf0a9;hp=54bdbb22be36c747e4999119f7cacbf0c047ea67;hb=8de7213fbf663ff60322896282dad51e8ab2f001;hpb=afc50e5d491a11364849383b75a8f939df703bac diff --git a/c_sharp/src/org/ldk/structs/SpendableOutputDescriptor.cs b/c_sharp/src/org/ldk/structs/SpendableOutputDescriptor.cs index 54bdbb22..dc8ca432 100644 --- a/c_sharp/src/org/ldk/structs/SpendableOutputDescriptor.cs +++ b/c_sharp/src/org/ldk/structs/SpendableOutputDescriptor.cs @@ -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);