[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / Shutdown.cs
index 79e97dad23a501d548937cc824bc58ee32102b93..a7ea3d7840743587b7a036a6025f384f512c9b66 100644 (file)
@@ -7,7 +7,9 @@ namespace org { namespace ldk { namespace structs {
 
 
 /**
- * A shutdown message to be sent or received from a peer
+ * A [`shutdown`] message to be sent to or received from a peer.
+ * 
+ * [`shutdown`]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#closing-initiation-shutdown
  */
 public class Shutdown : CommonBase {
        internal Shutdown(object _dummy, long ptr) : base(ptr) { }
@@ -19,36 +21,42 @@ public class Shutdown : CommonBase {
         * The channel ID
         */
        public byte[] get_channel_id() {
-               byte[] ret = bindings.Shutdown_get_channel_id(this.ptr);
+               long ret = bindings.Shutdown_get_channel_id(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * The channel ID
         */
        public void set_channel_id(byte[] val) {
-               bindings.Shutdown_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.Shutdown_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
 
        /**
         * The destination of this peer's funds on closing.
-        * Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
+        * 
+        * Must be in one of these forms: P2PKH, P2SH, P2WPKH, P2WSH, P2TR.
         */
        public byte[] get_scriptpubkey() {
-               byte[] ret = bindings.Shutdown_get_scriptpubkey(this.ptr);
+               long ret = bindings.Shutdown_get_scriptpubkey(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * The destination of this peer's funds on closing.
-        * Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
+        * 
+        * Must be in one of these forms: P2PKH, P2SH, P2WPKH, P2WSH, P2TR.
         */
        public void set_scriptpubkey(byte[] val) {
-               bindings.Shutdown_set_scriptpubkey(this.ptr, val);
+               bindings.Shutdown_set_scriptpubkey(this.ptr, InternalUtils.encodeUint8Array(val));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -57,7 +65,7 @@ public class Shutdown : CommonBase {
         * Constructs a new Shutdown given each field
         */
        public static Shutdown of(byte[] channel_id_arg, byte[] scriptpubkey_arg) {
-               long ret = bindings.Shutdown_new(InternalUtils.check_arr_len(channel_id_arg, 32), scriptpubkey_arg);
+               long ret = bindings.Shutdown_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), InternalUtils.encodeUint8Array(scriptpubkey_arg));
                GC.KeepAlive(channel_id_arg);
                GC.KeepAlive(scriptpubkey_arg);
                if (ret >= 0 && ret <= 4096) { return null; }
@@ -105,16 +113,18 @@ public class Shutdown : CommonBase {
         * Serialize the Shutdown object into a byte array which can be read by Shutdown_read
         */
        public byte[] write() {
-               byte[] ret = bindings.Shutdown_write(this.ptr);
+               long ret = bindings.Shutdown_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 Shutdown from a byte array, created by Shutdown_write
         */
        public static Result_ShutdownDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.Shutdown_read(ser);
+               long ret = bindings.Shutdown_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ShutdownDecodeErrorZ ret_hu_conv = Result_ShutdownDecodeErrorZ.constr_from_ptr(ret);