[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / InFlightHtlcs.cs
index 0e956560c056fc6e7795e0d96047372fcb6d6e6a..6a805b28c204734a2159db418bba86ae9c0ff07e 100644 (file)
@@ -45,6 +45,32 @@ public class InFlightHtlcs : CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Takes in a path with payer's node id and adds the path's details to `InFlightHtlcs`.
+        */
+       public void process_path(org.ldk.structs.Path path, byte[] payer_node_id) {
+               bindings.InFlightHtlcs_process_path(this.ptr, path == null ? 0 : path.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(payer_node_id, 33)));
+               GC.KeepAlive(this);
+               GC.KeepAlive(path);
+               GC.KeepAlive(payer_node_id);
+               if (this != null) { this.ptrs_to.AddLast(path); };
+       }
+
+       /**
+        * Adds a known HTLC given the public key of the HTLC source, target, and short channel
+        * id.
+        */
+       public void add_inflight_htlc(org.ldk.structs.NodeId source, org.ldk.structs.NodeId target, long channel_scid, long used_msat) {
+               bindings.InFlightHtlcs_add_inflight_htlc(this.ptr, source == null ? 0 : source.ptr, target == null ? 0 : target.ptr, channel_scid, used_msat);
+               GC.KeepAlive(this);
+               GC.KeepAlive(source);
+               GC.KeepAlive(target);
+               GC.KeepAlive(channel_scid);
+               GC.KeepAlive(used_msat);
+               if (this != null) { this.ptrs_to.AddLast(source); };
+               if (this != null) { this.ptrs_to.AddLast(target); };
+       }
+
        /**
         * Returns liquidity in msat given the public key of the HTLC source, target, and short channel
         * id.
@@ -67,16 +93,18 @@ public class InFlightHtlcs : CommonBase {
         * Serialize the InFlightHtlcs object into a byte array which can be read by InFlightHtlcs_read
         */
        public byte[] write() {
-               byte[] ret = bindings.InFlightHtlcs_write(this.ptr);
+               long ret = bindings.InFlightHtlcs_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 InFlightHtlcs from a byte array, created by InFlightHtlcs_write
         */
        public static Result_InFlightHtlcsDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.InFlightHtlcs_read(ser);
+               long ret = bindings.InFlightHtlcs_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_InFlightHtlcsDecodeErrorZ ret_hu_conv = Result_InFlightHtlcsDecodeErrorZ.constr_from_ptr(ret);