Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / TxOut.java
index c3d2259e56be618cd26c6d6245d4ca39a89f253d..a8f2f95366af95852a907607c0de26b91ef97f6c 100644 (file)
@@ -4,13 +4,30 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import java.lang.ref.Reference;
+import javax.annotation.Nullable;
 
 public class TxOut extends CommonBase{
-       TxOut(java.lang.Object _dummy, long ptr) { super(ptr); }
-       long to_c_ptr() { return 0; }
+       /** The script_pubkey in this output */
+       public final byte[] script_pubkey;
+       /** The value, in satoshis, of this output */
+       public final long value;
+
+       TxOut(java.lang.Object _dummy, long ptr) {
+               super(ptr);
+               this.script_pubkey = bindings.TxOut_get_script_pubkey(ptr);
+               this.value = bindings.TxOut_get_value(ptr);
+       }
+       public TxOut(long value, byte[] script_pubkey) {
+               super(bindings.TxOut_new(script_pubkey, value));
+               this.script_pubkey = bindings.TxOut_get_script_pubkey(ptr);
+               this.value = bindings.TxOut_get_value(ptr);
+       }
+
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
                super.finalize();
                if (ptr != 0) { bindings.TxOut_free(ptr); }
        }
+
 }
\ No newline at end of file