enhance(jit): Add support for clear text results in ServerLambda

This removes the restriction of `ServerLambda` that the source program
must return encrypted values.
This commit is contained in:
Andi Drebes
2022-09-16 15:34:19 +02:00
committed by rudy-6-4
parent a5289a3145
commit ade86d935b

View File

@@ -55,10 +55,6 @@ ServerLambda::loadFromModule(std::shared_ptr<DynamicModule> module,
<< ") != 1 is not supported";
}
if (!param->outputs[0].encryption.hasValue()) {
return StringError("ServerLambda: clear output is not yet supported");
}
lambda.clientParameters = *param;
return lambda;
}