X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c_sharp%2Fsrc%2Forg%2Fldk%2Fstructs%2FPing.cs;h=3bdad4c0b92914ebcfd1896fdeceeae6bbdff802;hb=8de7213fbf663ff60322896282dad51e8ab2f001;hp=9ca8849c6ee109eda4c2d47401cc18be09cd0ef5;hpb=c6777737ea14e7814b0fa7d6fe16536f31d4a82b;p=ldk-java diff --git a/c_sharp/src/org/ldk/structs/Ping.cs b/c_sharp/src/org/ldk/structs/Ping.cs index 9ca8849c..3bdad4c0 100644 --- a/c_sharp/src/org/ldk/structs/Ping.cs +++ b/c_sharp/src/org/ldk/structs/Ping.cs @@ -109,16 +109,18 @@ public class Ping : CommonBase { * Serialize the Ping object into a byte array which can be read by Ping_read */ public byte[] write() { - byte[] ret = bindings.Ping_write(this.ptr); + long ret = bindings.Ping_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 Ping from a byte array, created by Ping_write */ public static Result_PingDecodeErrorZ read(byte[] ser) { - long ret = bindings.Ping_read(ser); + long ret = bindings.Ping_read(InternalUtils.encodeUint8Array(ser)); GC.KeepAlive(ser); if (ret >= 0 && ret <= 4096) { return null; } Result_PingDecodeErrorZ ret_hu_conv = Result_PingDecodeErrorZ.constr_from_ptr(ret);