Skip to content

Commit

Permalink
Fix example in README (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranbt authored Mar 18, 2024
1 parent 474d58e commit 04dfd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ import "src/suavelib/Suave.sol";
contract TestForge is Test, SuaveEnabled {
function testConfidentialInputs() public {
bytes memory input = hex"abcd";
setConfidentialInputs(input);
ctx.setConfidentialInputs(input);
bytes memory found2 = Suave.confidentialInputs();
assertEq0(input, found2);
Expand Down

0 comments on commit 04dfd3a

Please sign in to comment.