Bindings updates
[ldk-java] / ts / structs / ChannelTransactionParameters.ts
index 3d6e367ffae3a59ae6e21524534ab287335112fd..3a9d901671094b34bd2aba6154c1ae0baf56d6d9 100644 (file)
@@ -21,12 +21,14 @@ import * as bindings from '../bindings' // TODO: figure out location
        public ChannelTransactionParameters clone() {
                number ret = bindings.ChannelTransactionParameters_clone(this.ptr);
                const ret_hu_conv: ChannelTransactionParameters = new ChannelTransactionParameters(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
        public ChannelPublicKeys get_holder_pubkeys() {
                number ret = bindings.ChannelTransactionParameters_get_holder_pubkeys(this.ptr);
                const ret_hu_conv: ChannelPublicKeys = new ChannelPublicKeys(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
@@ -56,6 +58,7 @@ import * as bindings from '../bindings' // TODO: figure out location
        public CounterpartyChannelTransactionParameters get_counterparty_parameters() {
                number ret = bindings.ChannelTransactionParameters_get_counterparty_parameters(this.ptr);
                const ret_hu_conv: CounterpartyChannelTransactionParameters = new CounterpartyChannelTransactionParameters(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
@@ -67,6 +70,7 @@ import * as bindings from '../bindings' // TODO: figure out location
        public OutPoint get_funding_outpoint() {
                number ret = bindings.ChannelTransactionParameters_get_funding_outpoint(this.ptr);
                const ret_hu_conv: OutPoint = new OutPoint(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
@@ -78,6 +82,7 @@ import * as bindings from '../bindings' // TODO: figure out location
        public static ChannelTransactionParameters constructor_new(ChannelPublicKeys holder_pubkeys_arg, number holder_selected_contest_delay_arg, boolean is_outbound_from_holder_arg, CounterpartyChannelTransactionParameters counterparty_parameters_arg, OutPoint funding_outpoint_arg) {
                number ret = bindings.ChannelTransactionParameters_new(holder_pubkeys_arg == null ? 0 : holder_pubkeys_arg.ptr & ~1, holder_selected_contest_delay_arg, is_outbound_from_holder_arg, counterparty_parameters_arg == null ? 0 : counterparty_parameters_arg.ptr & ~1, funding_outpoint_arg == null ? 0 : funding_outpoint_arg.ptr & ~1);
                const ret_hu_conv: ChannelTransactionParameters = new ChannelTransactionParameters(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
                ret_hu_conv.ptrs_to.add(holder_pubkeys_arg);
                ret_hu_conv.ptrs_to.add(counterparty_parameters_arg);
                ret_hu_conv.ptrs_to.add(funding_outpoint_arg);
@@ -92,12 +97,14 @@ import * as bindings from '../bindings' // TODO: figure out location
        public DirectedChannelTransactionParameters as_holder_broadcastable() {
                number ret = bindings.ChannelTransactionParameters_as_holder_broadcastable(this.ptr);
                const ret_hu_conv: DirectedChannelTransactionParameters = new DirectedChannelTransactionParameters(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
        public DirectedChannelTransactionParameters as_counterparty_broadcastable() {
                number ret = bindings.ChannelTransactionParameters_as_counterparty_broadcastable(this.ptr);
                const ret_hu_conv: DirectedChannelTransactionParameters = new DirectedChannelTransactionParameters(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
@@ -109,6 +116,7 @@ import * as bindings from '../bindings' // TODO: figure out location
        public static ChannelTransactionParameters constructor_read(Uint8Array ser) {
                number ret = bindings.ChannelTransactionParameters_read(ser);
                const ret_hu_conv: ChannelTransactionParameters = new ChannelTransactionParameters(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }