Update auto-generated bindings
[ldk-java] / ts / structs / Result_ChannelFeaturesDecodeErrorZ.ts
index af6fcd002e9622364c52c15cdb19fcc9689d3e08..7864a54d581379ca4f5f6f7210c47ac2b882937a 100644 (file)
@@ -9,7 +9,7 @@ public class Result_ChannelFeaturesDecodeErrorZ extends CommonBase {
        }
 
        static Result_ChannelFeaturesDecodeErrorZ constr_from_ptr(long ptr) {
-               if (bindings.LDKCResult_ChannelFeaturesDecodeErrorZ_result_ok(ptr)) {
+               if (bindings.CResult_ChannelFeaturesDecodeErrorZ_is_ok(ptr)) {
                        return new Result_ChannelFeaturesDecodeErrorZ_OK(null, ptr);
                } else {
                        return new Result_ChannelFeaturesDecodeErrorZ_Err(null, ptr);
@@ -37,18 +37,21 @@ public class Result_ChannelFeaturesDecodeErrorZ extends CommonBase {
                }
        }
 
-       public static Result_ChannelFeaturesDecodeErrorZ constructor__ok(ChannelFeatures o) {
+       public static Result_ChannelFeaturesDecodeErrorZ constructor_ok(ChannelFeatures o) {
                number ret = bindings.CResult_ChannelFeaturesDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
                Result_ChannelFeaturesDecodeErrorZ ret_hu_conv = Result_ChannelFeaturesDecodeErrorZ.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(o);
                return ret_hu_conv;
        }
 
-       public static Result_ChannelFeaturesDecodeErrorZ constructor__err(DecodeError e) {
+       public static Result_ChannelFeaturesDecodeErrorZ constructor_err(DecodeError e) {
                number ret = bindings.CResult_ChannelFeaturesDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
                Result_ChannelFeaturesDecodeErrorZ ret_hu_conv = Result_ChannelFeaturesDecodeErrorZ.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(e);
                return ret_hu_conv;
        }
 
+       public boolean is_ok() {
+               boolean ret = bindings.CResult_ChannelFeaturesDecodeErrorZ_is_ok(this.ptr);
+               return ret;
+       }
+
 }