We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running a FHE division operation, it fails with error signature 1320155232 not recognized
signature 1320155232 not recognized
function runDiv(uint256 lhs, uint256 rhs) external virtual returns (uint256 result) { bytes1 toType = 0x03; lhs = this.trivialEncrypt(lhs, toType); rhs = this.trivialEncrypt(rhs, toType); result = this.fheDiv(lhs, rhs, 0x00); } function runDivByScalar(uint256 lhs, uint256 rhs) external virtual returns (uint256 result) { bytes1 toType = 0x03; lhs = this.trivialEncrypt(lhs, toType); result = this.fheDiv(lhs, rhs, 0x01); }
The text was updated successfully, but these errors were encountered:
goshawk-3
Successfully merging a pull request may close this issue.
Description
When running a FHE division operation, it fails with error
signature 1320155232 not recognized
The text was updated successfully, but these errors were encountered: