X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FMaxDustHTLCExposure.cs;h=8e0c88b801b6d830dbb2774178e4c9d4b8aa8daf;hb=592c64eb658d92e314a2b983cea16cecf3882474;hp=93491a4efc984889880356086deb2e7c1897ce5c;hpb=c6777737ea14e7814b0fa7d6fe16536f31d4a82b;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/MaxDustHTLCExposure.cs b/c_sharp/src/org/ldk/structs/MaxDustHTLCExposure.cs index 93491a4e..8e0c88b8 100644 --- a/c_sharp/src/org/ldk/structs/MaxDustHTLCExposure.cs +++ b/c_sharp/src/org/ldk/structs/MaxDustHTLCExposure.cs @@ -6,7 +6,7 @@ using System; namespace org { namespace ldk { namespace structs { /** - * Options for how to set the max dust HTLC exposure allowed on a channel. See + * Options for how to set the max dust exposure allowed on a channel. See * [`ChannelConfig::max_dust_htlc_exposure`] for details. */ public class MaxDustHTLCExposure : CommonBase { @@ -86,7 +86,7 @@ public class MaxDustHTLCExposure : CommonBase { * This ignores pointers and is_owned flags and looks at the values in fields. */ public bool eq(org.ldk.structs.MaxDustHTLCExposure b) { - bool ret = bindings.MaxDustHTLCExposure_eq(this.ptr, b == null ? 0 : b.ptr); + bool ret = bindings.MaxDustHTLCExposure_eq(this.ptr, b.ptr); GC.KeepAlive(this); GC.KeepAlive(b); return ret; @@ -100,16 +100,18 @@ public class MaxDustHTLCExposure : CommonBase { * Serialize the MaxDustHTLCExposure object into a byte array which can be read by MaxDustHTLCExposure_read */ public byte[] write() { - byte[] ret = bindings.MaxDustHTLCExposure_write(this.ptr); + long ret = bindings.MaxDustHTLCExposure_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 MaxDustHTLCExposure from a byte array, created by MaxDustHTLCExposure_write */ public static Result_MaxDustHTLCExposureDecodeErrorZ read(byte[] ser) { - long ret = bindings.MaxDustHTLCExposure_read(ser); + long ret = bindings.MaxDustHTLCExposure_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_MaxDustHTLCExposureDecodeErrorZ ret_hu_conv = Result_MaxDustHTLCExposureDecodeErrorZ.constr_from_ptr(ret);