We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab52c9 commit 98f8f40Copy full SHA for 98f8f40
1 file changed
docs/solidity-guides/inputs.md
@@ -107,7 +107,7 @@ function transfer(
107
bytes calldata inputProof
108
) public {
109
// Verify the provided encrypted amount and convert it into an encrypted uint64
110
- euint64 amount = FHE.asEuint64(encryptedAmount, inputProof);
+ euint64 amount = FHE.fromExternal(encryptedAmount, inputProof);
111
112
// Function logic here, such as transferring funds
113
...
0 commit comments