X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FResult_ChannelFeaturesDecodeErrorZ.ts;h=7864a54d581379ca4f5f6f7210c47ac2b882937a;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=942ff138713551a1169dc5f4450374a29310a2d2;hpb=7aa095f42a570229656ab5fade9d966823b72e06;p=ldk-java diff --git a/ts/structs/Result_ChannelFeaturesDecodeErrorZ.ts b/ts/structs/Result_ChannelFeaturesDecodeErrorZ.ts index 942ff138..7864a54d 100644 --- a/ts/structs/Result_ChannelFeaturesDecodeErrorZ.ts +++ b/ts/structs/Result_ChannelFeaturesDecodeErrorZ.ts @@ -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); @@ -40,15 +40,18 @@ public class Result_ChannelFeaturesDecodeErrorZ extends CommonBase { 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) { 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; + } + }