Skip to content

Commit

Permalink
T
Browse files Browse the repository at this point in the history
  • Loading branch information
Vectorized committed Dec 7, 2024
1 parent 9fca15e commit 99c4915
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/ext/ithaca/BLS.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,12 @@ contract BLSTest is SoladyTest {
function hashToCurveG2Optimized(bytes memory message)
public
view
returns (BLS.G2Point memory)
returns (BLS.G2Point memory result)
{
return BLS.hashToG2(message);
_misalignFreeMemoryPointer();
_brutalizeMemory();
result = BLS.hashToG2(message);
_checkMemory();
}

/// @notice Computes a point in G2 from a message
Expand Down

0 comments on commit 99c4915

Please sign in to comment.